﻿ 
/* Css For Fuzze */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header/style-one/style-two
5. Main Slider/style-one/style-two
6. Intro Section
7. Welcome Section
9. Cta Section
8. Research Fields
10. Testimonial Section
11. Researches Section
12. Team Section
14. Video
15. Fact Counter
16. News Section
19. Clients Section
20. Main Footer
21. Footer Bottom
22. Research Style Two
23. Innovative Solution
24. Discover Section
25. Testimonial Section
26. Chooseus Section
27. News Style Two
28. Page Title
29. Research Page Section
30. Research Details
31. Professor Page Section
32. Professor Details
33. About Section
34. Error Section
35. Blog Page Section
36. Blog Details
37. Blog Sidebar
38. Contact Section
39. Google Map


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



/*** 

====================================================================
  Reset
====================================================================

 ***/
* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}


/*** 

====================================================================
  Global Settings
====================================================================

 ***/


body {
  font-size:15px;
  color:#696969;
  line-height:28px;
  font-weight:400;
  background:#ffffff;
  font-family: 'Rubik', sans-serif;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

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

.large-container{
  max-width: 1450px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid{
  padding: 0px;
}

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

.small-container{
  max-width:680px;
  margin:0 auto;
}

.boxed_wrapper{
  position: relative;
  margin: 0 auto;
  overflow: hidden !important;
  width: 100%;
  min-width: 300px;
}


a{
  text-decoration:none;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

a:hover{
  text-decoration:none;
  outline:none;
}

input,button,select,textarea{
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 15px;
}

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

input{
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus{
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p{
  position: relative;
  font-family: 'Rubik', sans-serif;
  color: #696969;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #070719;
  margin: 0px;
  transition: all 500ms ease;
}

/* Preloader */

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
  background: #ffffff;
}

.loader-inner {
  position: relative;
  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;
  -webkit-transition: opacity 550ms ease, -webkit-transform 550ms ease;
  transition: opacity 550ms ease, transform 550ms ease;
}

.loader-ring {
  position: relative;
  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;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  -webkit-animation: loader-logo-in 700ms cubic-bezier(.22, 1, .36, 1) both;
  animation: loader-logo-in 700ms cubic-bezier(.22, 1, .36, 1) both;
}

.loader-ring-track,
.loader-ring-spin {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.loader-ring-track {
  border: 2px solid #eef0f4;
}

.loader-ring-spin {
  border: 2px solid transparent;
  border-top-color: #2F714B;
  border-right-color: rgba(47, 113, 75, 0.30);
  -webkit-animation: loader-spin 1.1s linear infinite;
  animation: loader-spin 1.1s linear infinite;
}

.loader-logo {
  position: relative;
  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;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0px 14px 34px rgba(7, 7, 25, 0.08);
  box-shadow: 0px 14px 34px rgba(7, 7, 25, 0.08);
}

.loader-logo img {
  display: block;
  height: 122px;
  width: auto;
  max-width: 168px;
}

.loader-wrap.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 550ms ease, visibility 0s linear 550ms;
  transition: opacity 550ms ease, visibility 0s linear 550ms;
}

.loader-wrap.is-hidden .loader-inner {
  opacity: 0;
  -webkit-transform: translateY(-14px);
  transform: translateY(-14px);
}

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

@keyframes loader-logo-in {
  0%   { opacity: 0; -webkit-transform: translateY(16px); transform: translateY(16px); }
  100% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px); }
}

@media screen and (max-width: 500px) {
  .loader-ring { width: 172px; height: 172px; }
  .loader-logo { width: 130px; height: 130px; }
  .loader-logo img { height: 100px; max-width: 140px; }
}


.centred{
  text-align: center;
}

.pull-left{
  float: left;
}

.pull-right{
  float: right;
}


figure{
  margin: 0px;
}

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

/** button **/

.theme-btn{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: transparent;
  text-align: center;
  padding: 15px 38px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}

.theme-btn i{
  margin-left: 10px;
}

.theme-btn:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: translateY(0px) skew(-12deg);
  border-radius: 5px;
  z-index: -1;
  transition: all 500ms ease;
}

.theme-btn:hover:before{
  width: 100%;
}

.theme-btn:hover{
  color: #fff;
}

.theme-btn:after{
  position: absolute;
  content: '';
  background-color: #070719;
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: translateY(0px) skew(-12deg);
  border-radius: 5px;
  z-index: -1;
  transition: all 500ms ease;
}

.theme-btn:hover:after{
  width: 100%
}


.pagination{
  position: relative;
  display: block;
}

.pagination li{
  display: inline-block;
  margin: 0px 12px;
}

.pagination li a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: #e6e6e8;
  text-align: center;
  color: #5b5858;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current{
  color: #fff;
  background: #070719;
}

.pagination li a:before{
  position: absolute;
  content: '';
  border: 2px solid #ebebeb;
  border-radius: 50%;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
}


.sec-pad{
  padding: 110px 0px 120px 0px !important;
}

.sec-pad-2{
  padding: 110px 0px !important;
}

.mr-0{
  margin: 0px !important;
}

.scroll-top{
  width: 55px;
  height: 55px;
  line-height: 64px;
  position: fixed;
  bottom: 105%;
  right: 30px;
  font-size: 40px;
  z-index: 99;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: 1s ease;
}

.scroll-top.open {
  bottom: 50px;
}

.scroll-top span{
  color: #fff;
}

.sec-title{
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.sec-title span.top-text{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  padding-left: 45px;
  margin-bottom: 21px;
  text-transform: uppercase;
}

.sec-title span.top-text:before{
  position: absolute;
  content: '';
  background-image: linear-gradient(#2F714B 0%, #2F714B 100%), linear-gradient(#2F714B 0%, #2F714B 100%);
  background-size: 100% 2px, 100% 2px;
  background-position: 0px 4px, 0px 17px;
  background-repeat: no-repeat;
  width: 28px;
  height: 23px;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
}

.sec-title h2{
  position: relative;
  display: block;
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
  margin: 0px;
}

.sec-title h2 span{
  font-weight: 300;
}

.sec-title.light h2{
  color: #fff;
}

.sec-title.centred{
  text-align: center !important;
}

.sec-title.centred span.top-text{
  padding-right: 45px;
}

.sec-title.centred span.top-text:after{
  position: absolute;
  content: '';
  background-image: linear-gradient(#2F714B 0%, #2F714B 100%), linear-gradient(#2F714B 0%, #2F714B 100%);
  background-size: 100% 2px, 100% 2px;
  background-position: 0px 4px, 0px 17px;
  background-repeat: no-repeat;
  width: 28px;
  height: 23px;
  right: 0px;
  top: 0px;
  background-repeat: no-repeat;
}



/*** 

====================================================================
                        Home-Page-One
====================================================================

***/


/** main-header **/

.main-header{
  position:relative;
  left:0px;
  top:0px;
  z-index:999;
  width:100%;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.sticky-header{
  position:fixed;
  opacity:0;
  visibility:hidden;
  left:0px;
  top:0px;
  width:100%;
  z-index:0;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.fixed-header .sticky-header{
  z-index:999;
  opacity:1;
  visibility:visible;
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.main-header.style-one{
  position: relative;
  padding: 0px 70px;
  width: 100%;
}

.header-top{
  position: relative;
  width: 100%;
  background: #fff;
  padding: 11px 50px;
}

.header-top ul li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #070719;
  line-height: 26px;
}

.header-top ul li a{
  display: inline-block;
  color: #070719;
}

.header-top ul li a:hover{

}

.header-top ul.left-info li{
  padding-left: 40px;
  margin-right: 10px;
}

.header-top ul.left-info li:last-child{
  margin: 0px !important;
}

.header-top ul.left-info li:first-child{
  padding: 0px;
}

.header-top ul.left-info li i{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: -4px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

.header-top ul.right-info li{
  margin-right: 35px;
  padding-left: 28px;
}

.header-top ul.right-info li:last-child{
  margin: 0px !important;
}

.header-top ul.right-info li i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 15px;
}

.main-header .outer-box{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0px 50px;
}

.main-header .outer-box .logo-box{
  position: relative;
  padding: 17.5px 0px;
  max-width: 172px;
}

.main-header .outer-box .logo-box img{
  width: 100%;
}

.main-header .outer-box .btn-box{
  position: relative;
  top: 2px;
  display: flex;
}

.main-header .outer-box .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 25px;
  color: #070719;
  padding: 10px 40px;
}

.main-header .outer-box .btn-box a:before{
  background: #fff;
}

.main-header .outer-box .btn-box a:hover{
  color: #fff;
}


/** search box btn **/

.main-header .search-box-outer {
  position: relative;
  display: inline-block;
  padding: 31px 0px;
  margin-left: 20px;
}

.main-header .search-box-btn{
  position: relative;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  background: transparent;
  transition: all 500ms ease;
}

.main-header .search-box-btn:hover{
  
}

.main-header .search-box-outer .dropdown-menu {
  top: 55px !important;
  padding: 0px;
  width: 330px;
  border-radius: 0px;
  background: #ffffff;
  right: 0;
  left: auto !important;
  transform: translate3d(0px, 0px, 0px) scale3d(0.8,0.8,0.8) !important;
  border-color: transparent;
  border-radius: 3px;
  box-shadow: 7px 5px 30px 0 rgba(72,73,121,0.15);
  transition: .5s ease;
  display: block;
  opacity: 0;
  visibility: hidden;
}

.main-header .search-box-outer .show .dropdown-menu {
  display: block;
  transform: scale3d(1,1,1)!important;
  opacity: 1;
  visibility: visible;
}

.main-header .search-panel .form-container{
  padding: 30px;
}

.main-header .search-panel .form-group {
  position: relative;
  margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 9px 50px 9px 15px;
  height: 50px;
  border: 1px solid #f3f5fe;
  border-radius: 3px;
  background: #f3f5fe;
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus {
  border-color: #f3f5fe;
}

.main-header .search-panel .search-btn {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 50px;
  height: 48px;
  text-align: center;
  color: #111111;
  background: #f3f5fe;
  font-size: 14px;
  border-radius: 0px 3px 3px 0px;
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}


/** main-menu **/

.main-menu{
  float: left;
}

.main-menu .navbar-collapse{
  padding:0px;
  display:block !important;
}

.main-menu .navigation{
  margin:0px;
}

.main-menu .navigation > li{
  position:inherit;
  float:left;
  z-index:2;
  padding:30px 0px;
  margin: 0px 22px;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.main-menu .navigation > li:last-child{
  margin-right:0px !important;
}

.main-menu .navigation > li:first-child{
  margin-left: 0px !important;
}

.main-menu .navigation > li > a{
  position:relative;
  display:block;
  text-align:center;
  font-size:15px;
  line-height:30px;
  padding-right: 17px;
  font-family: 'Roboto', sans-serif;
  font-weight:700;
  opacity:1;
  color: #fff;
  z-index:1;
  text-transform: uppercase;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a{
  
}

.main-menu .navigation > li.dropdown > a:before{
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  top: 2px;
  right: 0px;
}

.sticky-header .outer-box{
  position: relative;
}

.main-menu .navigation > li > ul,
.main-menu .navigation > li > .megamenu{
  position:absolute;
  left: inherit;
  top:100%;
  width:230px;
  z-index:100;
  display:none;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0px;
  filter: alpha(opacity=0);
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -webkit-box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.2);
  box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.2);
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.main-menu .navigation > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
  -webkit-transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
  transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.main-menu .navigation > li:hover > ul > li{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.main-menu .navigation > li > ul > li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+4) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+5) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+6) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+7) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.main-menu .navigation > li > ul > li:nth-child(2n+8) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.main-menu .navigation > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > .megamenu li > a{
  position:relative;
  display:block;
  padding:7px 0px;
  line-height:24px;
  font-weight:600;
  font-size:15px;
  font-family: 'Roboto', sans-serif;
  text-transform:capitalize;
  color:#070719;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > a:hover,
.main-menu .navigation > li > .megamenu li > a:hover{

}

.main-menu .navigation > li > ul > li:last-child > a,
.main-menu .navigation > li > .megamenu li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:14px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:800;
  text-align:center;
  z-index:5;  
}

.main-menu .navigation > li > ul > li > ul{
  position:absolute;
  right:100%;
  top:0%;
  width:230px;
  z-index:100;
  display:none;
  padding: 10px 0px;
  filter: alpha(opacity=0);
  background: #fff;
  border-radius: 0px 0px 10px 10px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -webkit-box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.2);
  box-shadow: 0px 4px 4px 1px rgba(0,0,0,0.2);
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.main-menu .navigation > li > ul > li > ul.from-right{
  left:auto;
  right:0px;  
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
}

.main-menu .navigation > li > ul > li > ul > li{
  position:relative;
  width:100%;
  padding: 0px 30px;
  -webkit-transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
  transition: all 0.2s cubic-bezier(0.4,0.28,0.31,1.28) 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.main-menu .navigation > li > ul > li:hover > ul > li{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+1) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.main-menu .navigation > li > ul > li > ul > li:nth-child(2n+4) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
  border-bottom:none; 
}

.main-menu .navigation > li > ul > li > ul > li > a{
  position:relative;
  display:block;
  padding:7px 0px;
  line-height:24px;
  font-weight:600;
  font-size:15px;
  font-family: 'Roboto', sans-serif;
  text-transform:capitalize;
  color:#070719;
  text-align: left;
  transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li:last-child > a{
  border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover{
  
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position:absolute;
  right:20px;
  top:12px;
  display:block;
  line-height:24px;
  font-size:16px;
  font-weight:900;
  z-index:5;  
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:hover > .megamenu{
  visibility:visible;
  opacity:1;
  filter: alpha(opacity=100);
  top: 100%;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
  visibility:visible;
  opacity:1;
  filter: alpha(opacity=100);
  top: 0%;
  -webkit-transform: rotateX(0);
  transform: rotateX(0); 
}

.main-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:-32px;
  top:66px;
  width:34px;
  height:30px;
  text-align:center;
  font-size:18px;
  line-height:26px;
  color:#3b3b3b;
  cursor:pointer;
  display: none;
  z-index:5;
  transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn{
  
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn{
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar{
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #ffffff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header.style-two .menu-area .mobile-nav-toggler .icon-bar{
  background-color: #222;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child{
  margin-bottom: 0px;
}


/** megamenu-style **/

.main-menu .navigation > li.dropdown > .megamenu{
  position: absolute;
  width: 100%;
  padding: 30px 50px;
  left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4{
  font-weight: 500;
  padding: 3px 0px;
  margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler{
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color:#3786ff;
  display: none;
}

.mobile-menu{
  position: fixed;
  right: 0;
  top: 0;
  width: 360px;
  padding-right:0px;
  max-width:100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .navbar-collapse{
  display:block !important; 
}

.mobile-menu-visible{
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop{
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #06070f;
  z-index: 1;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -webkit-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
  opacity: 0.78;
  visibility: visible;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  -webkit-transition:all 0.35s ease;
  -moz-transition:all 0.35s ease;
  -ms-transition:all 0.35s ease;
  -o-transition:all 0.35s ease;
  transition:all 0.35s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .menu-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0d1a2c 0%, #0a0a1d 55%, #0a0a1d 100%);
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box{
  opacity: 1;
  visibility: visible;
  -webkit-transition:all 0.3s ease;
  -moz-transition:all 0.3s ease;
  -ms-transition:all 0.3s ease;
  -o-transition:all 0.3s ease;
  transition:all 0.3s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

/* ---- menu head ---- */

.mobile-menu .menu-head{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex: 0 0 auto;
}

.mobile-menu .nav-logo{
  position: relative;
  padding: 0px;
  text-align: left;
}

.mobile-menu .close-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  -webkit-transition:all 0.5s ease;
  -moz-transition:all 0.5s ease;
  -ms-transition:all 0.5s ease;
  -o-transition:all 0.5s ease;
  transition:all 0.5s ease;
}

.mobile-menu-visible .mobile-menu .close-btn{
  -webkit-transform:rotate(360deg);
  -ms-transform:rotate(360deg);
  transform:rotate(360deg);
}

.mobile-menu .close-btn:hover{
  background: #2F714B;
}

.mobile-menu-visible .mobile-menu .close-btn:hover{
  background: #2F714B;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

/* ---- scrollable navigation ---- */

.mobile-menu .pages-acc{
  position: relative;
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 26px;
}

.mobile-menu .pages-toggle{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mobile-menu .pages-toggle:hover{
  border-color: rgba(125,200,160,0.45);
  background: rgba(255,255,255,0.05);
}

.mobile-menu .pages-toggle .pages-toggle-label{
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu .pages-toggle .pages-toggle-label i{
  font-size: 15px;
  color: #7dc8a0;
}

.mobile-menu .pages-toggle .fa-angle-down{
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  -webkit-transition: transform 400ms ease;
  -moz-transition: transform 400ms ease;
  -ms-transition: transform 400ms ease;
  -o-transition: transform 400ms ease;
  transition: transform 400ms ease;
}

.mobile-menu .pages-acc .menu-outer{
  flex: 0 0 auto;
  max-height: 0;
  overflow: hidden;
  padding: 0px;
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.5s ease;
  -ms-transition: max-height 0.5s ease;
  -o-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

.mobile-menu .pages-acc.open .menu-outer{
  max-height: 560px;
}

.mobile-menu .pages-acc.open .pages-toggle .fa-angle-down{
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mobile-menu .menu-outer{
  position: relative;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 10px 0px;
}

.mobile-menu .navigation{
  position: relative;
  display: block;
  width: 100%;
  float: none;
  padding: 0px;
  margin: 0px;
}

.mobile-menu .navigation li{
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu .navigation li.logo-box{
  display: none !important;
}

.mobile-menu .navigation:last-child{
  border-bottom: 0px;
}

.mobile-menu .navigation li > ul > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu .navigation li > a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 24px;
  padding: 17px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  color: #ffffff;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mobile-menu .navigation li > a:after{
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(255,255,255,0.30);
  border-right: 2px solid rgba(255,255,255,0.30);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mobile-menu .navigation li > a:hover{
  color: #7dc8a0;
  padding-left: 34px;
}

.mobile-menu .navigation li > a:hover:after{
  border-color: #7dc8a0;
}

.mobile-menu .navigation li.current > a{
  color: #2F714B;
}

.mobile-menu .navigation li.current > a:after{
  border-color: #2F714B;
}

.mobile-menu .navigation li ul li > a{
  font-size: 14px;
  margin-left: 0px;
  padding-left: 44px;
  text-transform: capitalize;
}

.mobile-menu .navigation li > a:before{
  content:'';
  position:absolute;
  left:0px;
  top:0px;
  height:100%;
  width:4px;
  background: #2F714B;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mobile-menu .navigation li > a:hover:before,
.mobile-menu .navigation li.current > a:before{
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
  position:absolute;
  right:22px;
  top:12px;
  width:34px;
  height:34px;
  text-align:center;
  font-size:15px;
  line-height:34px;
  color:#ffffff;
  background:rgba(255,255,255,0.08);
  cursor:pointer;
  border-radius:50%;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open{
  color: #ffffff;
  background: #2F714B;
  -webkit-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul,
.mobile-menu .navigation > li.dropdown > .megamenu{
  display: none;
}

/* ---- menu bottom ---- */

.mobile-menu .menu-bottom{
  position: relative;
  flex: 0 0 auto;
  padding: 24px 26px 28px 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.mobile-menu .call-btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #2F714B;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 12px 28px rgba(47, 113, 75, 0.35);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mobile-menu .call-btn i{
  font-size: 16px;
}

.mobile-menu .call-btn:hover{
  background: #245a3c;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.mobile-menu .mobile-contact-groups{
  position: relative;
  padding: 22px 0px 0px 0px;
}

.mobile-menu .contact-group{
  position: relative;
  margin-bottom: 22px;
}

.mobile-menu .contact-group:last-child{
  margin-bottom: 0px;
}

.mobile-menu .group-title{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 18px;
  color: #7dc8a0;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.mobile-menu .group-title i{
  font-size: 13px;
  color: #7dc8a0;
}

.mobile-menu .address-line{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 11px;
}

.mobile-menu .address-line:last-child{
  margin-bottom: 0px;
}

.mobile-menu .address-line .loc-name{
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
}

.mobile-menu .address-line .loc-addr{
  font-size: 13px;
  line-height: 19px;
  color: rgba(255,255,255,0.6);
}

.mobile-menu .phone-link{
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255,255,255,0.78);
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mobile-menu .phone-link:last-child{
  margin-bottom: 0px;
}

.mobile-menu .phone-link i{
  flex: 0 0 auto;
  width: 16px;
  font-size: 13px;
  line-height: 20px;
  color: #2F714B;
  text-align: center;
}

.mobile-menu .phone-link span{
  font-weight: 600;
  color: #ffffff;
}

.mobile-menu .phone-link .tag{
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: rgba(255,255,255,0.5);
}

.mobile-menu .phone-link .tag::before{
  content: "–";
  margin-right: 6px;
  color: rgba(255,255,255,0.35);
}

.mobile-menu .phone-link:hover{
  color: #7dc8a0;
}

.mobile-menu .phone-link:hover span{
  color: #7dc8a0;
}

.mobile-menu .phone-link:hover .tag{
  color: rgba(125,200,160,0.7);
}

.mobile-menu .social-links{
  position: relative;
  padding: 20px 0px 0px 0px;
}

.mobile-menu .social-links ul{
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px;
}

.mobile-menu .social-links li a{
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  text-align: center;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mobile-menu .social-links li a:hover{
  color: #ffffff;
  background: #2F714B;
  border-color: #2F714B;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.main-header .outer-box{
  position: relative;
}


/** banner-section **/

.banner-section{
  position: relative;
  overflow: hidden;
}

.banner-carousel{
  position: relative;
}

.banner-carousel .slide-item{
  position: relative;
  padding: 90px 0px;
}

.banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(0deg, rgba(7,7,25,0.95), rgba(47,113,75,0.5) 100%);
  top: 0px;
  right: 0px;
  z-index: 1;
}

.banner-carousel .slide-item .image-layer{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.banner-carousel .active .slide-item .image-layer{
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
}

.banner-carousel .content-box{
  position: relative;
  display: block;
  margin-right: -20px;
  z-index:5;
}

.banner-carousel .content-box h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Rubik', sans-serif;
  color: #fff;
  font-weight: 600;
  letter-spacing: 7px;
  text-transform: uppercase;
  padding-left: 85px;
  margin-bottom: 25px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box h5{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box h5:before,
.banner-carousel .content-box h5:after{
  position: absolute;
  content: '';
  background: #fff;
  width: 50px;
  height: 1px;
}

.banner-carousel .content-box h5:before{
  left: 10px;
  top: 8px;
}

.banner-carousel .content-box h5:after{
  left: 0px;
  bottom: 9px;
}

.banner-carousel .content-box h1,
.banner-carousel .content-box h2{
  position: relative;
  display: block;
  color: #fff;
  font-size: 100px;
  line-height: 95px;
  font-weight: 700;
  margin-bottom: 56px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box h1,
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .content-box .btn-box{
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

    .banner-carousel .content-box .btn-box .theme-btn.banner-btn{
      background: transparent;
      border: 2px solid #ffffff;
      color: #ffffff;
      padding: 13px 34px;
      margin-left: 20px;
      border-radius: 5px;
      box-shadow: none;
      -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
      transform: translateY(0px);
    }

.banner-carousel .content-box .btn-box .theme-btn.banner-btn i{
  margin-left: 0px;
  margin-right: 10px;
  font-size: 15px;
}

.banner-carousel .content-box .btn-box .theme-btn.banner-btn:before{
  background: transparent;
  border: none;
}

.banner-carousel .content-box .btn-box .theme-btn.banner-btn:after{
  background: transparent;
  width: 100%;
  -webkit-transform: translateY(0px) skew(0deg);
  -ms-transform: translateY(0px) skew(0deg);
  transform: translateY(0px) skew(0deg);
}

.banner-carousel .content-box .btn-box .theme-btn.banner-btn:hover{
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.35);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.banner-carousel .image-box{
  position: relative;
  display: block;
  margin-right: -150px;
  z-index: 5;
  opacity: 0;
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease
}

.banner-carousel .active .image-box{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-carousel .image-box .image{
  position: relative;
  display: block;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%, 10% 0%);
  padding-left: 10px;
  padding-bottom: 10px;
}

.banner-carousel .image-box .image:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: -90px;
  top: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 0%);
}

.banner-carousel .image-box .image img{
  position: relative;
  width: 100%;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

.banner-section .owl-dots{
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.banner-section .owl-theme .owl-dots .owl-dot{
  display: block;
}

.banner-section .owl-theme .owl-dots .owl-dot span{
  position: relative;
  background: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 15px 0px;
  cursor: pointer;
}

.banner-section .owl-theme .owl-dots .owl-dot span:before{
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transform: scale(0,0);
  transition: all 500ms ease;
}

.banner-section .owl-theme .owl-dots .owl-dot.active span:before,
.banner-section .owl-theme .owl-dots .owl-dot span:hover:before{
  transform: scale(1,1);
}

.bg-color-1{
  background: #f5f7fa;
}


/** feature-section **/

.feature-section{
  position: relative;
  padding: 130px 0px 100px 0px;
}

.feature-section .inner-box{
  position: relative;
  margin-right: 40px;
}

.feature-section .inner-box .single-item{
  position: relative;
  display: block;
  background: #fff;
  text-align: center;
  padding: 59px 30px 48px 30px;
  margin-bottom: 30px;
}

.feature-section .inner-box .single-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  right: 0px;
  transition: all 500ms ease;
}

.feature-section .inner-box .single-item:hover:before{
  height: 100%;
}

.feature-section .inner-box .single-box{
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%, 10% 0%);
}

.feature-section .inner-box .single-item .icon-box{
  position: relative;
  font-size: 100px;
  line-height: 80px;
  margin-bottom: 7px;
  transition: all 500ms ease;
}

.feature-section .inner-box .single-item:hover .icon-box{
  color: #fff;
}

.feature-section .inner-box .single-item h3{
  display: block;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  transition: all 500ms ease;
}

.feature-section .inner-box .single-item:hover h3{
  color: #fff;
}

.feature-section .content_block_1 .content-box{
  margin-left: -30px;
}

.feature-section .content_block_1 .content-box .text{
  position: relative;
  display: block;
  padding-left: 75px;
  margin-bottom: 33px;
}

.feature-section .content_block_1 .content-box .text .icon-box{
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 55px;
  line-height: 60px;
}

.feature-section .inner-column .single-column:last-child{
  padding-top: 30px;
  margin-left: -30px;
}


/** about-section **/

.about-section{
  position: relative;
  padding: 125px 0px;
}

.content_block_2 .content-box .sec-title h2{
  margin-bottom: 34px;
}

.content_block_2 .content-box .text{
  position: relative;
  display: block;
  padding-left: 100px;
  margin-bottom: 31px;
}

.content_block_2 .content-box .text .icon-box{
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  line-height: 60px;
}

.content_block_2 .content-box .text h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-section .content_block_2 .content-box{
  margin-right: 45px;
}

.image_block_1 .image-box{
  position: relative;
  display: block;
  padding: 95px 100px 30px 0px;
}

.image_block_1 .image-box .image img{
  width: 100%;
}

.image_block_1 .image-box .image-1{
  position: relative;
  display: block;
  overflow: hidden;
}

.image_block_1 .image-box .image-1:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.image_block_1 .image-box:hover .image-1:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.image_block_1 .image-box .image-2{
  position: absolute;
  top: 0px;
  right: 0px;
}

.image_block_1 .image-box:before{
  position: absolute;
  content: '';
  width: 180px;
  height: 190px;
  left: -30px;
  bottom: 0px;
  clip-path: polygon(0% 0%, 0% 0%, 100% 100%, 0% 100%, 0% 0%);
}


/** service-section **/

.service-section{
  position: relative;
}

.service-section .inner-content{
  position: relative;
  margin-bottom: -190px;
  z-index: 1;
}

.service-block-one .inner-box{
  position: relative;
  display: block;
  text-align: center;
}

.service-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #070719;
}

.service-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box img{
  opacity: 0.2;
  transform: scale(1.05);
}

.service-block-one .inner-box .lower-content{
  position: relative;
  margin: 0px 25px;
}

.service-block-one .inner-box .lower-content .inner{
  position: relative;
  margin-top: -134px;
  padding: 43px 30px 33px 30px;
  z-index: 1;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .inner{
  padding-bottom: 97px;
  margin-top: -198px;
}

.service-block-one .inner-box .lower-content .inner:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: translateY(0px) skew(-5deg);
  border-radius: 10px;
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-one .inner-box .lower-content .inner:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  right: 0px;
  transform: scale(0,0) skew(-5deg);
  border-radius: 10px;
  z-index: -1;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .inner:after{
  transform: scale(1,1) skew(-5deg);
}

.service-block-one .inner-box .lower-content .inner .light-icon{
  position: absolute;
  left: 50%;
  top: 56%;
  color: #f2f2f2;
  font-size: 170px;
  line-height: 100px;
  transform: translate(-50%,-50%);
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .inner .light-icon{
  color: rgba(255,255,255,0.08);
}

.service-block-one .inner-box .lower-content .inner .icon-box{
  position: relative;
  font-size: 80px;
  line-height: 60px;
  margin-bottom: 18px;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .inner .icon-box{
  color: #fff;
}

.service-block-one .inner-box .lower-content .inner h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.service-block-one .inner-box .lower-content .inner h3 a{
  display: inline-block;
  color: #050703;
}

.service-block-one .inner-box:hover .lower-content .inner h3 a{
  color: #fff;
}

.service-block-one .inner-box .lower-content .inner .text{
  position: absolute;
  left: 0px;
  bottom: 28px;
  right: 0px;
  width: 100%;
  padding: 0px 30px;
}

.service-block-one .inner-box .lower-content .inner .text p{
  color: #fff;
  opacity: 0;
  transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .inner .text p{
  opacity: 1;
}

.service-section .sec-title{
  margin-bottom: 80px;
}


/** contact-section **/

.contact-section{
  position: relative;
  width: 100%;
  padding: 310px 0px 130px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.contact-section:before{
  position: absolute;
  content: '';
  background: #070719;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.9;
}

.contact-section .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.contact-section .image-box:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.contact-section .image-box:hover:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.contact-section .image-box img{
  width: 100%;
}

.contact-section .content_block_3 .content-box{
  position: relative;
  margin: 0px 70px;
}

.contact-section .nice-select:after{
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  font-size: 15px;
  color: #8b8baf;
  top: 0px;
  right: 30px;
  margin: 0px;
  margin: 0px;
  border: none !important;
  transform: rotate(0deg) !important;
}

.contact-section .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
  max-width: 100%;
  line-height: 60px;
  border: 2px solid rgba(73,73,116,0.5)!important;
  font-size: 15px;
  color: #8b8baf;
  font-weight: 500;
  background: transparent;
  border-radius: 0px;
  padding: 0px 20px;
}

.content_block_3 .content-box form .form-group{
  position: relative;
  margin-bottom: 15px;
  min-height: 65px;
}

.content_block_3 .content-box form .form-group:last-child{
  margin-bottom: 0px;
}

.content_block_3 .content-box form .form-group input[type='text'],
.content_block_3 .content-box form .form-group input[type='email'],
.content_block_3 .content-box form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
  font-size: 15px;
  color: #8b8baf;
  font-weight: 500;
  background: transparent;
  border: 2px solid rgba(73,73,116,0.5);
  padding: 10px 60px 10px 30px;
  transition: all 500ms ease;
}

.content_block_3 .content-box form .form-group input::-webkit-input-placeholder,
.content_block_3 .content-box form .form-group textarea::-webkit-input-placeholder{
  color:#8b8baf;
}

.content_block_3 .content-box form .form-group input:focus,
.content_block_3 .content-box form .form-group textarea:focus{

}

.content_block_3 .content-box form .form-group i{
  position: absolute;
  font-size: 15px;
  top: 25px;
  right: 30px;
  z-index: 1;
}

.content_block_3 .content-box form .form-group textarea{
  height: 110px;
  resize: none;
}

.content_block_3 .content-box .sec-title{
  margin-bottom: 50px;
}


/** gallery-section **/

.gallery-section{
  position: relative;
  padding: 125px 70px 102px 70px;
  border-bottom: 1px solid #e0e0e0;
}

.project-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-one.small-image .inner-box{
  top: 50px;
}

.project-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: -webkit-linear-gradient(0deg, rgba(7,7,25,1), rgba(47,113,75,1) 100%);
}

.project-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .image-box img{
  opacity: 0.1;
  transform: scale(1.05);
}

.project-block-one .inner-box .content-box{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  padding: 30px 30px;
  text-align: center;
}

.project-block-one .inner-box .content-box .view-btn a{
  position: relative;
  display: inline-block;
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 11px;
  transform: scale(0,0);
}

.project-block-one .inner-box:hover .content-box .view-btn a{
  transform: scale(1,1);
}

.project-block-one .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  top: 15px;
  transition: all 500ms ease;
  opacity: 0;
}

.project-block-one .inner-box .content-box h3 a{
  display: inline-block;
  color: #fff;
}

.project-block-one .inner-box .content-box h3 a:hover{
  text-decoration: underline;
}

.project-block-one .inner-box:hover .content-box h3{
  opacity: 1;
  top: 0px;
}

.gallery-section .owl-dots{
  position: relative;
  display: block;
  text-align: center;
  top: 115px;
  width: 100%;
}

.gallery-section .owl-theme .owl-dots .owl-dot span{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 3px;
  margin: 0px;
  padding: 0px;
  background: transparent;
  cursor: pointer;
  transition: all 500ms ease;
}

.gallery-section .owl-theme .owl-dots .owl-dot{
  width: 25%;
  margin: 0px 0px;
  padding: 0px 0px;
}

.gallery-section .owl-theme .owl-dots .owl-dot.active span{

}

.gallery-section .sec-title{
  margin-bottom: 80px;
}


/** testimonial-section **/

.testimonial-section{
  position: relative;
  padding: 125px 0px 130px 0px;
}

.testimonial-section .content_block_4 .content-box{
  position: relative;
  margin: 0px 40px;
}

.content_block_4 .content-box .testimonial-content{
  position: relative;
  padding-left: 130px;
  margin: 0px 10px;
}

.content_block_4 .content-box .testimonial-content .icon-box{
  position: absolute;
  left: 0px;
  top: 6px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 50px;
  color: #fff;
  z-index: 1;
}

.content_block_4 .content-box .testimonial-content .icon-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: skew(-5deg);
  border-radius: 3px;
  z-index: -1;
}

.content_block_4 .content-box .testimonial-content .text h5{
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}

.content_block_4 .content-box .testimonial-content .text p{
  line-height: 30px;
}

.content_block_4 .content-box .testimonial-content .text{
  margin-bottom: 18px;
}

.content_block_4 .content-box .testimonial-content .author-box{
  position: relative;
  padding: 0px 0px 0px 70px;
}

.content_block_4 .content-box .testimonial-content .author-box .image-box{
  position: absolute;
  left: 0px;
  top: -1px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.content_block_4 .content-box .testimonial-content .author-box .image-box img{
  width: 100%;
  border-radius: 50%;
}

.content_block_4 .content-box .testimonial-content .author-box h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 2px;
}

.content_block_4 .content-box .testimonial-content .author-box .designation{
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.content_block_4 .content-box .sec-title{
  margin-bottom: 55px;
}

.testimonial-section .image-column .image-box{
  position: relative;
  display: block;
  padding: 0px 36px;
}

.testimonial-section .image-column .image-box img{
  width: 100%;
}

/** cta-section **/

.cta-section{
  position: relative;
}

.cta-section .inner-container{
  position: relative;
  padding: 60px 100px 63px 100px;
  margin-bottom: 0px;
  z-index: 1;
}

.cta-section .inner-container .text p{
  position: relative;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 50px;
  margin-bottom: 21px;
}

.cta-section .inner-container .text p:before {
  position: absolute;
  content: '';
  background-image: linear-gradient(#7dc8a0 0%, #7dc8a0 100%), linear-gradient(#7dc8a0 0%, #7dc8a0 100%);
  background-size: 100% 2px, 100% 2px;
  background-position: 0px 4px, 0px 17px;
  background-repeat: no-repeat;
  width: 28px;
  height: 23px;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
}

.cta-section .inner-container .text h2{
  display: block;
  font-size: 55px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 700;
}

.cta-section .inner-container .text h2 span{
  font-weight: 300;
}

.cta-section .inner-container .btn-box .theme-btn:before{
  background: #ffffff;
}

.cta-section .inner-container .btn-box .theme-btn{

}

.cta-section .inner-container .btn-box{
  position: relative;
  margin-top: 68px;
}

.cta-section .inner-container .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.cta-section .inner-container:before{
  position: absolute;
  content: '';
  background: #070719;
  height: 100%;
  width: 240px;
  top: 0px;
  right: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 70px 0px);
}


/** news-section **/

.news-section{
  position: relative;
  padding: 129px 0px 217px 0px;
}

.news-section .sec-title{
  margin-bottom: 80px;
}

.news-section:before{
  position: absolute;
  content: '';
  background: #f5f7fa;
  width: 100%;
  height: calc(100% + 140px);
  left: 0px;
  top: -140px;
}

.news-block-one .inner-box{
  position: relative;
  display: block;
  background: #ffffff;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover{
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.05);
}

.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box img{
  transform: scale(1.04);
  opacity: 0.2;
}

.news-block-one .inner-box .lower-content{
  position: relative;
  padding: 27px 40px 30px 40px;
}

.news-block-one .inner-box .lower-content .post-date{
  position: absolute;
  top: -39px;
  right: 25px;
}

.news-block-one .inner-box .lower-content .post-date h3{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 64px;
  text-align: center;
  font-size: 24px;
  line-height: 18px;
  padding: 15px 0px;
  font-weight: 700;
  margin: 0px;
  border: none;
  z-index: 1;
}

.news-block-one .inner-box .lower-content .post-date h3 span{
  font-size: 14px;
  line-height: 15px;
  color: #696969;
  font-weight: 500;
}

.news-block-one .inner-box .lower-content .post-date h3:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: translateY(0px) skew(-5deg);
  border-radius: 5px;
  z-index: -1;
  box-shadow: 0px 0px 25px 0px rgba(47,113,75,0.2);
  transition: all 500ms ease;
}

.news-block-one .inner-box .lower-content .category{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.news-block-one .inner-box .lower-content h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 27px;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: #070719;
}

.news-block-one .inner-box .lower-content h3 a:hover{

}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #696969;
  float: left;
  margin-right: 65px;
  padding-left: 23px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child{
  margin: 0px !important;
}

.news-block-one .inner-box .lower-content .post-info li a{
  color: #696969;
}

.news-block-one .inner-box .lower-content .post-info li a:hover{

}

.news-block-one .inner-box .lower-content .post-info li i{
  position: absolute;
  left: 0px;
  top: 4px;
}

.news-block-one .inner-box .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: #070719;
  width: 5px;
  height: 5px;
  top: 10px;
  right: -36px;
  border-radius: 50%;
}

.news-block-one .inner-box .lower-content .post-info li:last-child:before{
  display: none;
}


/** main-footer **/

.main-footer{
  position: relative;
  background: #070719;
}

.footer-top{
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 60px 0px 57px 0px;
  margin-top: -87px;
  z-index: 1;
}

.footer-top:before{
  position: absolute;
  content: '';
  width: calc(100% + 230px);
  height: 100%;
  left: -115px;
  top: 0px;
  z-index: -1;
}

.footer-top .top-info{
  position: relative;
  margin-top: 3px;
}

.footer-top .top-info li{
  position: relative;
  display: inline-block;
  margin-right: 175px;
  padding-left: 60px;
}

.footer-top .top-info li:last-child{
  margin: 0px !important;
}

.footer-top .top-info li i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 45px;
  color: #ffffff;
}

.footer-top .top-info li h3{
  display: block;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0px;
}

.footer-top .top-info li p{
  color: #ffffff;
}

.footer-top .top-info li:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 1px;
  height: 50px;
  top: 0px;
  right: -90px;
}

.footer-top .top-info li:last-child:before{
  display: none;
}

.main-footer .widget-section{
  position: relative;
  padding: 65px 0px 75px 0px;
  border-bottom: 1px solid #1f1f3e;
}

.main-footer .widget-section .widget-title{
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.main-footer .widget-section .widget-title h3{
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
}

.main-footer .widget-section p,
.main-footer .widget-section a{
  color: #9e9e9e;
}

.main-footer .about-widget .text{
  position: relative;
  margin-bottom: 26px;
}

.main-footer .about-widget .text p{
  font-size: 15px;
  line-height: 26px;
  color: #b8b8c0;
}

.main-footer .about-widget .email-box{
  position: relative;
  padding-left: 40px;
}

.main-footer .about-widget .email-box i{
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 24px;
}

.main-footer .about-widget .email-box a{
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 30px;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
}

.main-footer .about-widget .email-box a:hover{

}

.ml-90{
  margin-left: 90px;
}

.ml-30{
  margin-left: 30px;
}

.main-footer .links-widget .widget-title {
  margin-bottom: 22px;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  display: inline-block;
}

.main-footer .links-widget .links-list li a:hover{

}

.main-footer .post-widget{
  position: relative;
  margin-left: -15px;
}

.main-footer .post-widget .post{
  position: relative;
  padding: 0px 0px 0px 100px;
  min-height: 80px;
  margin-bottom: 15px;
}

.main-footer .post-widget .post:last-child{
  margin-bottom: 0px;
}

.main-footer .post-widget .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 1px;
  width: 75px;
  height: 75px;
  overflow: hidden;
}

.main-footer .post-widget .post .post-thumb img{
  width: 100%;
  transition: all 500ms ease;
}

.main-footer .post-widget .post:hover .post-thumb img{
  opacity: 0.2;
}

.main-footer .post-widget .post h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}

.main-footer .post-widget .post h6 a{
  display: inline-block;
}

.main-footer .post-widget .post h6 a:hover{
  color: #fff;
}

.main-footer .post-widget .post .post-date{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #9e9e9e;
  padding-left: 26px;
  text-transform: uppercase;
}

.main-footer .post-widget .post .post-date i{
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 15px;
}

.main-footer .post-widget .widget-title{
  margin-bottom: 26px;
}

.footer-bottom{
  position: relative;
  width: 100%;
  padding: 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px 30px;
}

.footer-bottom .copyright{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  text-align: left;
}

.footer-bottom .mvm-legal-links{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-bottom .developer{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  text-align: right;
}

.footer-bottom .copyright p{
  text-align: left;
}

.footer-bottom .developer p{
  text-align: right;
}

.footer-bottom .copyright p,
.footer-bottom .copyright a{
  line-height: 30px;
  color: #9e9e9e;
  font-family: 'Roboto', sans-serif;
}

.footer-bottom .copyright a:hover{

}

.footer-bottom .footer-social li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 40px;
}

.footer-bottom .footer-social li:last-child{
  margin: 0px !important;
}

.footer-bottom .footer-social li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Rubik', sans-serif;
  color: #ffffff;
  font-weight: 500;
  padding-left: 45px;
  padding-top: 3px;
}

.footer-bottom .footer-social li a i{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
}

.footer-bottom .footer-social li:first-child a i{
  background: #1771e6;
}

.footer-bottom .footer-social li:nth-child(2) a i{
  background: #1da1f2;
}

.footer-bottom .footer-social li:nth-child(3) a i{
  background: #2F714B;
}

.footer-bottom .footer-social li:last-child a i{
  background: #de0e88;
}

/** footer contact widget (MVM) **/

.main-footer .footer-top .top-info li{
  margin-right: 60px;
}

.main-footer .footer-top .top-info li:before{
  right: -31px;
}

.main-footer .footer-top .top-info li:last-child{
  padding-left: 72px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px){
  .main-footer .footer-top{
    flex-wrap: wrap;
  }
  .main-footer .footer-top .top-info{
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  .main-footer .footer-top .top-info li{
    float: none;
    margin-right: 40px;
  }
  .main-footer .footer-top .top-info li:before{
    right: -21px;
  }
}

.footer-bottom .developer p,
.footer-bottom .developer a{
  line-height: 30px;
  color: #9e9e9e;
  font-family: 'Roboto', sans-serif;
}

.footer-bottom .developer a{
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-bottom .developer a:hover{
  color: #2F714B;
}

.main-footer .footer-bottom .footer-social li:nth-child(2) a i{
  background: #de0e88;
}

.main-footer .footer-bottom .footer-social li:nth-child(3) a i{
  background: #2F714B;
}

.main-footer .footer-top .footer-logo img{
  height: 160px;
  width: auto;
  display: block;
}

@media only screen and (min-width: 768px){
  .main-footer .footer-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .main-footer .footer-top:after{
    display: none;
  }
}

.main-footer .contact-widget .contact-box{
  position: relative;
}

.main-footer .contact-widget .contact-box .c-item{
  position: relative;
  display: block;
  padding-left: 36px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 24px;
  color: #9e9e9e;
}

.main-footer .contact-widget .contact-box .c-item:last-child{
  margin-bottom: 0px;
}

.main-footer .contact-widget .contact-box .c-item i{
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 18px;
  color: #2F714B;
}

.main-footer .contact-widget .contact-box .c-item a{
  color: #9e9e9e;
}

.main-footer .contact-widget .contact-box .c-item a:hover{
  color: #2F714B;
}

.main-footer .contact-widget .contact-box .c-item a span.c-label{
  font-size: 13px;
  color: #8a8a92;
  font-weight: 400;
}

.main-footer .contact-widget .contact-box .c-item.hours{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-left: 0px;
  margin-bottom: 12px;
}

.main-footer .contact-widget .contact-box .c-item.hours .h-l{
  color: #9e9e9e;
}

.main-footer .contact-widget .contact-box .c-item.hours b{
  font-weight: 500;
  color: #ffffff;
  min-width: 105px;
  text-align: right;
}

.main-footer .contact-widget .contact-box .hours-block{
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.main-footer .contact-widget .contact-box .hours-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  user-select: none;
}

.main-footer .contact-widget .contact-box .hours-title i{
  font-size: 18px;
  color: #2F714B;
}

.main-footer .contact-widget .contact-box .hours-list{
  padding-top: 16px;
  max-width: 240px;
}


/* ===== Footer redesign ===== */

.footer-main{
  position: relative;
  background: #0a0a1d;
  padding: 85px 0px 75px 0px;
}

.footer-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 55px;
  align-items: start;
}

.footer-brand .brand-logo{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-brand .brand-logo span{
  color: #59b584;
}

.footer-brand > p{
  position: relative;
  display: block;
  color: #9e9e9e;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 28px;
}

.footer-brand .brand-contact .c-item{
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  color: #c9c9c9;
  font-size: 15px;
  line-height: 24px;
}

.footer-brand .brand-contact .c-item:last-child{
  margin-bottom: 0px;
}

.footer-brand .brand-contact .c-item i{
  position: absolute;
  left: 0px;
  top: 1px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: rgba(47, 113, 75, 0.18);
  color: #59b584;
  border-radius: 50%;
  font-size: 13px;
}

.footer-brand .brand-contact .c-item a{
  color: #c9c9c9;
  transition: all 500ms ease;
}

.footer-brand .brand-contact .c-item a:hover{
  color: #59b584;
}

.footer-links h4,
.footer-hours h4{
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 26px;
}

.footer-links h4:after,
.footer-hours h4:after{
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 42px;
  height: 3px;
  border-radius: 2px;
  background: #2F714B;
}

.footer-links ul li{
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.footer-links ul li:last-child{
  margin-bottom: 0px;
}

.footer-links ul li a{
  position: relative;
  display: inline-block;
  color: #9e9e9e;
  font-size: 15px;
  line-height: 24px;
  padding-left: 20px;
  transition: all 500ms ease;
}

.footer-links ul li a:before{
  position: absolute;
  content: '\f105';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  left: 0px;
  top: 0px;
  color: #59b584;
  font-size: 14px;
}

.footer-links ul li a:hover{
  color: #ffffff;
  padding-left: 26px;
}

.footer-hours .hours-item{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  margin-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-hours .hours-item:last-of-type{
  border-bottom: none;
}

.footer-hours .hours-item span{
  color: #9e9e9e;
  font-size: 14px;
  line-height: 22px;
}

.footer-hours .hours-item b{
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
}

.footer-hours .footer-social{
  position: relative;
  margin-top: 26px;
}

.footer-hours .footer-social li{
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.footer-hours .footer-social li:last-child{
  margin-right: 0px;
}

.footer-hours .footer-social li a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  color: #c9c9c9;
  font-size: 15px;
  transition: all 500ms ease;
}

.footer-hours .footer-social li a:hover{
  background: #2F714B;
  border-color: #2F714B;
  color: #ffffff;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}

.footer-bottom{
  background: #070719;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p{
  text-align: center;
  color: #9e9e9e;
  font-size: 14px;
  line-height: 24px;
}

.footer-bottom p a{
  color: #ffffff;
}


/*** 

====================================================================
                        Home-Page-Two
====================================================================

***/


/** header-style-two **/

.main-header.style-two{
  position: relative;
}

.main-header.style-two .header-lower{
  position: relative;
  width: 100%;
  background: #fff;
}

.main-header.style-two .header-lower .outer-box{
  justify-content: center;
}

.main-header.style-two .header-lower .nav-box{
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-header.style-two .header-lower .btn-box{
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-header.style-two .header-lower .btn-box .theme-btn{
  font-size: 13px;
  padding: 13px 32px;
  color: #fff;
  border-radius: 5px;
}

.main-header.style-two .header-lower .btn-box .theme-btn:before{
  background-color: #2F714B;
}

.main-header.style-two .header-lower .btn-box .theme-btn:after{
  background-color: #ffffff;
}

.main-header.style-two .header-lower .btn-box .theme-btn:hover{
  color: #2F714B;
}

.main-header.style-two .header-lower:before,
.main-header.style-two .header-lower:after{
  display: none;
  position: absolute;
  content: '';
  background: #e3e3e3;
  width: 1px;
  height: 100%;
  top: 0px;
}

.main-header.style-two .header-lower:before{
  left: 150px;
}

.main-header.style-two .header-lower:after{
  right: 150px;
}

.main-header.style-two .header-lower .main-menu .navigation > li > a{
  color: #070719;
}

.main-header.style-two .header-lower .nav-box .nav-btn{
  position: relative;
  display: inline-block;
  width: 38px;
  height: 23px;
  cursor: pointer;
  z-index: 1;
}

.main-header.style-two .header-lower .nav-box .nav-btn .bar{
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0px;
  top: 0px;
  line-height: 1px;
  transition: all 500ms ease;
}

.main-header.style-two .header-lower .nav-box .nav-btn .bar-2{
  width: 30px;
  top: 10px;
}

.main-header.style-two .header-lower .nav-box .nav-btn:hover .bar-2{
  width: 100%;
}

.main-header.style-two .header-lower .nav-box .nav-btn .bar-3{
  top: 20px;
}

.main-header.style-two .header-lower .search-box-btn{
  color: #070719;
  font-size: 15px;
  font-weight: 700;
}

.main-header.style-two .header-lower .search-box-btn:hover{

}

.main-header.style-two .header-lower .search-box-outer{
  margin-left: 0px;
  margin-right: 20px;
}

.main-header.style-two .sticky-header li.logo-box{
  display: none;
}

.main-header.style-two .header-lower li.logo-box{
  padding: 0px;
  max-width: 100%;
  margin: 0px 120px;
}

.main-header.style-two .header-lower li.logo-box .logo{
  position: relative;
  width: 290px;
  text-align: center;
  display: inline-block;
  padding: 28px 0px 7px 0px;
  z-index: 1;
}

.main-header.style-two .header-lower li.logo-box .logo:before{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% + 20px);
  left: 0px;
  top: 0px;
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%, 0% 0%);
}

.main-header.style-two .header-lower li.logo-box .logo:after{
  position: absolute;
  content: '';
  background: #ffffff;
  width: calc(100% + 30px);
  height: calc(100% + 35px);
  left: -15px;
  top: 0px;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%, 0% 0%);
}

.main-header.style-two .header-lower li.logo-box .logo img{
  width: auto;
  position: relative;
}


/** xs-sidebar **/

.xs-sidebar-group .xs-overlay{
  left:0%;
  top:0;
  position:fixed;
  height:100%;
  opacity:0;
  width:100%;
  visibility:hidden;
  -webkit-transition:all .25s ease;
  -o-transition:all .25s ease;
  transition:all .25s ease;
  cursor: pointer;
  z-index: 999999;
}

.xs-sidebar-group.isActive .xs-overlay{
  opacity:.9;
  visibility:visible;
  -webkit-transition:all .25s ease;
  -o-transition:all .25s ease;
  transition:all .25s ease;
  right:100%;
}

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

.xs-sidebar-widget{
  position:fixed;
  left:-100%;
  top:0;
  bottom:0;
  width:100%;
  max-width:360px;
  z-index:999999;
  overflow:hidden;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  background-color:#1c1d1f;
  -webkit-transition:all 0.35s ease;
  -o-transition:all 0.35s ease;
  transition:all 0.35s ease;
  visibility:hidden;
  opacity:0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget{
  opacity:1;
  visibility:visible;
  left:0;
  -webkit-transition:all 0.35s ease;
  -o-transition:all 0.35s ease;
  transition:all 0.35s ease;
}

.sidebar-textwidget{
  padding:100px 30px;
}

.sidebar-widget-container{
  position:relative;
  top:0px;
  opacity:0;
  visibility:hidden;
  -webkit-transition:all .3s ease;
  -o-transition:all .3s ease;
  transition:all .3s ease;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}

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

.xs-overlay{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  opacity:.5;
  z-index:0;
}

.xs-bg-black{
  background: #070719;
}

.xs-menu-tools>li{
  display:inline-block;
  margin-right:15px;
}

.xs-menu-tools>li:last-child{
  margin-right:0;
}

.xs-menu-tools>li>a{
  color:#000000;
  text-decoration:none;
}

.sidebar-info-contents{
  position:relative;
}

.close-side-widget{
  position:relative;
  color:#fff;
  font-size:24px;
  -webkit-transition:all 0.5s ease;
  -moz-transition:all 0.5s ease;
  -ms-transition:all 0.5s ease;
  -o-transition:all 0.5s ease;
  transition:all 0.5s ease;
}

.close-side-widget:hover{
  
}

.sidebar-info-contents .content-inner{
  position:relative;
}

.sidebar-info-contents .content-inner .logo {
  padding:0px 0px 40px;
}

.sidebar-info-contents .content-inner .logo img{
  display:inline-block;
  max-width:100%; 
}

.sidebar-info-contents .content-inner .content-box{
  position:relative;
}

.sidebar-info-contents .content-inner .content-box h4{
  position:relative;
  font-size:20px;
  color:#fff;
  font-weight:700;
  margin-bottom:20px;
}

.sidebar-info-contents .content-inner .content-box p{
  position:relative;
  font-size:15px;
  color: #ccc;
  margin-bottom:25px;
}

.sidebar-info-contents .content-inner .contact-info{
  position:relative;
  margin-top:60px;
}

.sidebar-info-contents .content-inner .contact-info ul li{
  position:relative;
  display: block;
  font-size:15px;
  color: #ccc;
  margin-bottom:3px;
}

.sidebar-info-contents .content-inner .contact-info ul li a{
  color: #ccc;
}

.sidebar-info-contents .content-inner .contact-info ul li a:hover{
  
}

.sidebar-info-contents .content-inner .contact-info h4{
  position:relative;
  font-size:20px;
  color:#fff;
  font-weight:700;
  margin-bottom:20px;
}

.sidebar-info-contents .content-inner .social-box{
  position:relative;
  margin-top:20px;
  margin-bottom:30px;
}

.sidebar-info-contents .content-inner .social-box li{
  position:relative;
  display:inline-block;
  margin-right:6px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.sidebar-info-contents .content-inner .social-box li a{
  position:relative;
  width:36px;
  height:36px;
  color:#ccc;
  z-index:1;
  font-size:13px;
  line-height:36px;
  text-align:center;
  border-radius:50%;
  display:inline-block;
  background: transparent;
  border: 1px solid #ededed;
  -webkit-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  transition:all 300ms ease;
}

.sidebar-info-contents .content-inner .social-box li a:hover{
  
}


/** banner-style-two **/

.banner-section.style-two{
  position: relative;
}

.banner-section.style-two .banner-carousel .slide-item:before{
  background: #030401;
  opacity: 0.4;
}

.banner-section.style-two .banner-carousel .slide-item{
  padding: 130px 0px 150px 0px;
  min-height: 611px;
}

.banner-section.style-two .banner-carousel .content-box h1,
.banner-section.style-two .banner-carousel .content-box h2{
  font-size: 52px;
  line-height: 60px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px){
  .banner-section.style-two .banner-carousel .content-box h1,
  .banner-section.style-two .banner-carousel .content-box h2{
    font-size: 55px;
    line-height: 60px;
  }
}


/** pilkington-section **/

.pilkington-section{
  position: relative;
  z-index: 10;
  margin-top: -40px;
}

.pilkington-section .pilkington-plate{
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 940px;
  text-align: center;
  padding: 36px 40px 50px 40px;
  z-index: 1;
}

.pilkington-section .pilkington-plate:before{
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #2F714B;
  background: linear-gradient(180deg, #2F714B 0%, #245a3c 100%);
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%, 0% 0%);
  z-index: -1;
}

.pilkington-section .pilkington-plate:after{
  position: absolute;
  content: '';
  left: -15px;
  top: 0px;
  width: calc(100% + 30px);
  height: calc(100% + 35px);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(35, 38, 45, 0.12);
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%, 0% 0%);
  z-index: -2;
}

.pilkington-section .pilkington-plate .top-text{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c2e9d6;
  margin-bottom: 8px;
}

.pilkington-section .pilkington-plate h2{
  position: relative;
  display: block;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 50px;
  color: #ffffff;
  margin: 0px;
}

.pilkington-section .pilkington-plate h2 span{
  color: #c2e9d6;
  font-weight: 700;
}

@media only screen and (max-width: 767px){
  .pilkington-section .pilkington-plate{
    padding: 24px 20px 36px 20px;
  }

  .pilkington-section .pilkington-plate .top-text{
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
  }

  .pilkington-section .pilkington-plate h2{
    font-size: 30px;
    line-height: 34px;
  }
}

/** partner-section **/

.partner-section{
  position: relative;
  padding: 55px 0px 0px 0px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 52%, #eef5f0 100%);
}

.partner-section .partner-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 80px;
  z-index: 3;
}

.partner-section .partner-logo{
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 8px;
}

.partner-section .partner-float{
  position: relative;
  display: block;
  -webkit-animation: partnerFloat 5s ease-in-out infinite;
  animation: partnerFloat 5s ease-in-out infinite;
}

.partner-section .partner-logo::before{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 175%;
  -webkit-transform: translate(-50%, -50%) scale(0.85);
  -ms-transform: translate(-50%, -50%) scale(0.85);
  transform: translate(-50%, -50%) scale(0.85);
  background: radial-gradient(closest-side, rgba(47, 113, 75, 0.16), rgba(47, 113, 75, 0));
  opacity: 0;
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  -ms-transition: opacity 500ms ease, -ms-transform 500ms ease;
  transition: opacity 500ms ease, transform 500ms ease;
  pointer-events: none;
  z-index: 0;
}

.partner-section .partner-logo:hover::before{
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.partner-section .partner-logo img{
  width: 240px;
  height: 120px;
  max-width: none;
  object-fit: cover;
  object-position: 50% 46%;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 500ms ease;
  -ms-transition: -ms-transform 500ms ease;
  transition: transform 500ms ease;
}

.partner-section .partner-logo:hover img{
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}

.partner-section .partner-info h3{
  font-family: 'Rubik', sans-serif;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #070719;
  margin: 0px 0px 8px 0px;
}

.partner-section .partner-info h3 span{
  position: relative;
  color: #2F714B;
}

.partner-section .partner-info h3 span::after{
  content: '';
  position: absolute;
  left: 0px;
  bottom: 4px;
  width: 0px;
  height: 3px;
  border-radius: 3px;
  background: #2F714B;
  opacity: 0.3;
  -webkit-transition: width 500ms ease;
  -ms-transition: width 500ms ease;
  transition: width 500ms ease;
}

.partner-section .partner-info:hover h3 span::after{
  width: 100%;
}

.partner-section .partner-info p{
  font-size: 15px;
  line-height: 24px;
  color: #696969;
  margin: 0px;
}

.partner-section::before{
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,46 C150,80 320,10 540,26 C760,42 960,80 1090,62 C1220,44 1320,22 1440,38 L1440,80 Z' fill='%23c2e9d6'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  pointer-events: none;
  z-index: 1;
}

@keyframes partnerFloat{
  0%, 100%{
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50%{
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
}

@media only screen and (max-width: 767px){
  .partner-section{
    padding: 40px 0px 0px 0px;
  }

  .partner-section .partner-inner{
    padding-bottom: 60px;
  }

  .partner-section .partner-logo img{
    width: 190px;
    height: 95px;
    object-position: 50% 46%;
  }

  .partner-section .partner-info h3{
    font-size: 28px;
    line-height: 34px;
  }
}

/** about-style-two **/

.about-style-two{
  position: relative;
  padding: 130px 0px;
}

.image_block_2 .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  z-index: 1;
}

.image_block_2 .image-box .image img{
  width: 100%;
  display: block;
  border-radius: 18px;
  -webkit-transition: -webkit-transform 900ms ease;
  -ms-transition: -ms-transform 900ms ease;
  transition: transform 900ms ease;
}

.image_block_2 .image-box:hover .image img{
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.image_block_2 .image-box{
  position: relative;
  display: block;
}

.image_block_2 .image-box .about-stat-overlay{
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: -58px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(47, 113, 75, 0.14);
  box-shadow: 0px 22px 50px rgba(7, 7, 25, 0.12);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease;
}

.image_block_2 .image-box:hover .about-stat-overlay{
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  box-shadow: 0px 26px 55px rgba(7, 7, 25, 0.16);
}

.image_block_2 .image-box .about-stat-overlay .stat-item{
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 0 6px;
}

.image_block_2 .image-box .about-stat-overlay .stat-number{
  font-family: 'Rubik', sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  color: #070719;
  white-space: nowrap;
}

.image_block_2 .image-box .about-stat-overlay .stat-number .count-text{
  font-family: inherit;
}

.image_block_2 .image-box .about-stat-overlay .stat-plus{
  color: #2F714B;
}

.image_block_2 .image-box .about-stat-overlay .stat-label{
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2F714B;
  margin-top: 8px;
  white-space: nowrap;
}

@media only screen and (min-width: 1200px){
  .image_block_2 .image-box .image{
    height: 620px;
  }

  .image_block_2 .image-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
  .image_block_2 .image-box .image{
    height: 560px;
  }

  .image_block_2 .image-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px){
  .image_block_2 .image-box .image{
    height: 500px;
  }

  .image_block_2 .image-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (max-width: 767px){
  .image_block_2 .image-box .image{
    height: 420px;
  }

  .image_block_2 .image-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.about-style-two .content_block_2 .content-box{
  margin-left: 60px;
}

.about-style-two .content-column{
  display: flex;
  align-items: center;
}

.about-style-two .content_block_2 .content-box .sec-title{
  margin-bottom: 25px;
}

.about-style-two .content_block_2 .content-box .sec-title h2{
  font-size: 42px;
  line-height: 52px;
}

.about-style-two .content_block_2 .content-box .intro-text{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 28px;
  color: #696969;
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px){
  .image_block_2 .image-box .about-stat-overlay{
    left: 14px;
    right: 14px;
    bottom: -46px;
    gap: 18px;
    padding: 15px 18px;
    border-radius: 15px;
  }

  .image_block_2 .image-box .about-stat-overlay .stat-item:nth-child(2),
  .image_block_2 .image-box .about-stat-overlay .stat-item:nth-child(3){
    border-left: 1px solid rgba(47, 113, 75, 0.18);
    padding-left: 14px;
  }

  .image_block_2 .image-box .about-stat-overlay .stat-number{
    font-size: 26px;
  }

  .image_block_2 .image-box .about-stat-overlay .stat-label{
    font-size: 9px;
    letter-spacing: 1px;
  }
}

@media only screen and (max-width: 425px){
  .image_block_2 .image-box .about-stat-overlay{
    left: 12px;
    right: 12px;
    bottom: -38px;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 13px;
  }

  .image_block_2 .image-box .about-stat-overlay .stat-item:nth-child(2),
  .image_block_2 .image-box .about-stat-overlay .stat-item:nth-child(3){
    border-left: 1px solid rgba(47, 113, 75, 0.18);
    padding-left: 12px;
  }

  .image_block_2 .image-box .about-stat-overlay .stat-number{
    font-size: 22px;
  }

  .image_block_2 .image-box .about-stat-overlay .stat-label{
    font-size: 9px;
    line-height: 13px;
    letter-spacing: 1px;
    white-space: normal;
  }
}

/* bottom-box */
.about-style-two .content_block_2 .content-box .bottom-box{
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.about-style-two .content_block_2 .content-box .bottom-box .btn-box{
  position: relative;
  margin-right: 30px;
}

.about-style-two .content_block_2 .content-box .bottom-box .contact-box{
  position: relative;
  display: flex;
  align-items: center;
}

.about-style-two .content_block_2 .content-box .bottom-box .contact-box .contact-icon{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2F714B;
  color: #ffffff;
  font-size: 20px;
  margin-right: 15px;
}

.about-style-two .content_block_2 .content-box .bottom-box .contact-box .contact-info span{
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 18px;
  color: #7a7a7a;
}

.about-style-two .content_block_2 .content-box .bottom-box .contact-box .contact-info a{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #070719;
  transition: all 500ms ease;
}

.about-style-two .content_block_2 .content-box .bottom-box .contact-box .contact-info a:hover{
  color: #2F714B;
}

.bg-color-3{
  background: #070719;
}


/** service-style-two **/

.service-style-two{
  position: relative;
  padding: 130px 0px;
}

.service-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 866px;
  height: 419px;
  background-repeat: no-repeat;
}

.service-style-two .sec-title{
  margin-bottom: 80px;
}

.service-style-two .btn-box{
  position: relative;
  text-align: center;
  margin-top: 60px;
}

.service-style-two .btn-box .theme-btn:after{
  background-color: #256b45;
}

.service-style-two .sec-title span.top-text{
  color: #fff;
}

.service-style-two .sec-title span.top-text:before,
.service-style-two .sec-title span.top-text:after{
  background-image: linear-gradient(#7dc8a0 0%, #7dc8a0 100%), linear-gradient(#7dc8a0 0%, #7dc8a0 100%);
  background-size: 100% 2px, 100% 2px;
  background-position: 0px 4px, 0px 17px;
  background-repeat: no-repeat;
}

.service-block-two .inner-box{
  position: relative;
  display: block;
  padding: 50px 45px 42px 45px;
  overflow: hidden;
}

.service-block-two .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  transform: skew(-3deg);
  border-radius: 10px;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover:before{
  height: 100%;
}

.service-block-two .inner-box .icon-box{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #2F714B;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 28px;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover .icon-box{
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.service-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 28px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-block-two .inner-box h3 a{
  display: inline-block;
  color: #ffffff;
}

.service-block-two .inner-box h3 a:hover{
  text-decoration: underline;
}

.service-block-two .inner-box p{
  position: relative;
  color: #9e9e9e;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 24px;
  transition: all 500ms ease;
}

.service-block-two .inner-box .link a{
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 26px;
  font-family: 'Roboto', sans-serif;
  color: #c9c9c9;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 500ms ease;
}

.service-block-two .inner-box .link a i{
  margin-left: 10px;
  color: #2F714B;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover p,
.service-block-two .inner-box:hover .link a{
  color: #ffffff;
}

.service-block-two .inner-box .link a:hover i{
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}


/** gallery-style-two **/

.gallery-style-two{
  position: relative;
  padding: 130px 0px 100px 0px;
}

.gallery-style-two .project-block-one .inner-box{
  margin-bottom: 30px;
}

.gallery-style-two .small-block{
  padding-top: 80px;
}

.gallery-style-two .big-block .gallery-block:first-child{
  padding-top: 40px;
}

.gallery-style-two .sec-title .btn-box{
  position: absolute;
  top: 34px;
  right: 0px;
}

.gallery-style-two .sec-title .btn-box .theme-btn{
  color: #070719;
}

.gallery-style-two .sec-title .btn-box .theme-btn:before{
  background: transparent;
  border: 2px solid #e1e1e1;
}

.gallery-style-two .sec-title .btn-box .theme-btn:hover{
  color: #fff;
}

.gallery-style-two .sec-title .btn-box .theme-btn i{

}

.gallery-style-two .sec-title{
  margin-bottom: 0px;
}

.mvm-gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.mvm-gallery-item{
  position: relative;
}

.mvm-gallery-image{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.mvm-gallery-image img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mvm-gallery-image:before{
  position: absolute;
  content: '';
  inset: 0;
  background: rgba(47, 113, 75, 0.55);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mvm-gallery-zoom{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  background: #ffffff;
  color: #2F714B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  -ms-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mvm-gallery-image:hover .mvm-gallery-zoom{
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.mvm-gallery-image:hover:before{
  opacity: 1;
}

.mvm-gallery-image:hover img{
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.mvm-gallery{
  position: relative;
  padding: 100px 0px 90px 0px;
  background: #ffffff;
}

.mvm-gallery .gallery-intro{
  position: relative;
  max-width: 800px;
  margin: -30px auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  color: #5a5f68;
}

.mvm-404{
  padding: 100px 0px 120px 0px;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mvm-404 .auto-container{
  width: 100%;
}

.mvm-404-code{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 25px;
}

.mvm-404-code > span{
  position: relative;
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 180px;
  line-height: 1;
  font-weight: 800;
  color: #070719;
  letter-spacing: -6px;
}

.mvm-404-code .mvm-404-zero{
  color: #2F714B;
}

.mvm-404-code .mvm-404-zero i{
  position: absolute;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(47, 113, 75, 0.5);
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  border-radius: 4px;
}

.mvm-404-code .mvm-404-zero i.mvm-404-shard{
  left: -18px;
  top: 22px;
  border-color: rgba(47, 113, 75, 0.35);
}

.mvm-404-code .mvm-404-zero i.mvm-404-shard-2{
  right: -16px;
  bottom: 24px;
  border-color: rgba(47, 113, 75, 0.55);
}

.mvm-404 .inner-box h1{
  position: relative;
  display: block;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: #23262d;
  margin-bottom: 18px;
}

.mvm-404 .inner-box p{
  position: relative;
  display: block;
  max-width: 560px;
  margin: 0 auto 35px;
  font-size: 16px;
  line-height: 28px;
  color: #5a5f68;
}

.mvm-404 .mvm-404-actions{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.mvm-404 .mvm-404-actions .theme-btn{
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 38px;
  border-radius: 6px;
}

.mvm-404 .mvm-404-actions .theme-btn:before,
.mvm-404 .mvm-404-actions .theme-btn:after{
  -webkit-transform: translateY(0px) skew(0deg);
  -ms-transform: translateY(0px) skew(0deg);
  transform: translateY(0px) skew(0deg);
  border-radius: 6px;
}

.mvm-404 .mvm-404-actions .btn-outline{
  background: transparent;
  border: 2px solid #2F714B;
  color: #2F714B;
}

.mvm-404 .mvm-404-actions .btn-outline:before,
.mvm-404 .mvm-404-actions .btn-outline:after{
  background: transparent;
}

.mvm-404 .mvm-404-actions .btn-outline:hover{
  color: #ffffff;
  background-color: #2F714B;
}

.mvm-legal{
  position: relative;
  padding: 80px 0px 90px 0px;
  background: #ffffff;
}

.mvm-legal .legal-wrap{
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.mvm-legal .legal-updated{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #9aa0ab;
  margin-bottom: 25px;
}

.mvm-legal h3{
  position: relative;
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #23262d;
  margin: 30px 0px 12px 0px;
}

.mvm-legal p{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 28px;
  color: #5a5f68;
  margin-bottom: 14px;
}

.mvm-legal a{
  color: #2F714B;
}

.mvm-legal a:hover{
  text-decoration: underline;
}

.mvm-legal .legal-list{
  position: relative;
  margin: 0px 0px 14px 18px;
  padding: 0px;
}

.mvm-legal .legal-list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 28px;
  color: #5a5f68;
  margin-bottom: 8px;
  list-style: disc;
}

.mvm-legal .legal-list li b{
  font-weight: 600;
  color: #23262d;
}

.main-footer .footer-bottom .mvm-legal-links{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-footer .footer-bottom .mvm-legal-links a{
  display: inline-block;
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 0;
  white-space: nowrap;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-footer .footer-bottom .mvm-legal-links a + a,
.main-footer .footer-bottom .mvm-legal-links a + .mvm-cc-reopen{
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.main-footer .footer-bottom .mvm-legal-links a:hover{
  color: #c2e9d6;
}


/** team-section **/

.team-section{
  position: relative;
}

.team-section:before{
  position: absolute;
  content: '';
  background: #f5f7fa;
  width: 100%;
  height: 280px;
  left: 0px;
  bottom: 0px;
}

.team-section .sec-title{
  margin-bottom: 70px;
}

.team-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
}

.team-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.team-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.team-block-one .inner-box .lower-content{
  position: relative;
  padding: 2px 30px 31px 30px;
}

.team-block-one .inner-box .lower-content .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 2px;
}

.team-block-one .inner-box .lower-content .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #070719;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 2px solid #e7e7e7;
  text-align: center;
}

.team-block-one .inner-box .lower-content .social-links li a:hover{
  color: #fff;
}

.team-block-one .inner-box .lower-content:before{
  position: absolute;
  content: '';
  background: #fff;
  width: calc(100% - 60px);
  height: 23px;
  left: 30px;
  top: -23px;
}

.team-block-one .inner-box .lower-content .social-links{
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}

.team-block-one .inner-box .lower-content h4{
  display: block;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 2px;
}

.team-block-one .inner-box .lower-content h4 a{
  display: inline-block;
  color: #070719;
}

.team-block-one .inner-box .lower-content h4 a:hover{

}

.team-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}


/** faq-section **/

.faq-section{
  position: relative;
  padding: 130px 0px;
}

.faq-section .faq-inner .sec-title{
  margin-bottom: 47px;
}

.accordion-box .block{
  position: relative;
  display: block;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 500ms ease;
  margin-bottom: 10px;
}

.faq-section .accordion-box .block{
  background: #0e0e24;
}

.faq-section .accordion-box .block:before{
  position: absolute;
  content: '';
  background: #070719;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.8;
}

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

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

.accordion-box .block .acc-btn{
  position: relative;
  display: block;
  padding: 21px 80px 23px 30px;
  background: #ffffff;
  cursor: pointer;
  transition: all 500ms ease;
}

.faq-section .accordion-box .block .acc-btn.active{
  background: transparent;
  padding-bottom: 10px;
}

.accordion-box .block .acc-btn h5{
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h5{
  color: #fff;
}

.accordion-box .block .acc-btn .icon-outer{
  position: absolute;
  display: inline-block;
  top: 18px;
  right: 30px;
  font-size: 14px;
  width: 35px;
  height: 35px;
  line-height: 37px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  color: #fff;
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .icon-outer i:before{
  font-family: 'Font Awesome 5 Pro';
  content: "\f068";
}

.accordion-box .block .acc-content{
  position:relative;
  display:none;
  padding: 0px 30px 23px 30px;
}

.faq-section .accordion-box .block .acc-content p{
  color: #fff;
}

.faq-section .skills-inner{
  position: relative;
  margin-left: 100px;
  margin-right: 25px;
}

.faq-section .skills-inner .text{
  margin-bottom: 30px;
}

.faq-section .skills-inner .text p{
  line-height: 30px;
}

.faq-section .skills-inner .sec-title{
  margin-bottom: 43px;
}

.progress-box{
  position: relative;
  display: block;
  margin-bottom: 40px;
}

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

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

.progress-box .bar-inner{
  position:relative;
  display:block;
  border-radius:0px;
  width:0px;
  height:5px;
  -webkit-transition:all 1500ms ease;
  -ms-transition:all 1500ms ease;
  -o-transition:all 1500ms ease;
  -moz-transition:all 1500ms ease;
  transition:all 1500ms ease; 
}

.progress-box .count-text{
  position:absolute;
  top: -37px;
  right: -15px;
  font-size:18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #070719;
  -webkit-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  transition:all 500ms ease;  
}

.progress-box h5{
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 13px;
}


/** testimonial-style-two **/

.testimonial-style-two{
  position: relative;
  width: 100%;
  padding: 90px 0px 90px 0px;
  background: linear-gradient(135deg, #0b0f1e 0%, #070719 55%, #0d2a1c 100%);
  overflow: hidden;
}

.testimonial-style-two:before{
  position: absolute;
  content: '';
  width: 620px;
  height: 620px;
  left: -220px;
  top: -180px;
  border-radius: 50%;
  background: rgba(47, 113, 75, 0.20);
  filter: blur(90px);
  z-index: 0;
}

.testimonial-style-two:after{
  position: absolute;
  content: '';
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -200px;
  border-radius: 50%;
  background: rgba(47, 113, 75, 0.16);
  filter: blur(90px);
  z-index: 0;
}

.testimonial-style-two .auto-container{
  position: relative;
  z-index: 1;
}

.testimonial-style-two .sec-title{
  margin-bottom: 55px;
}

.testimonial-style-two .sec-title span.top-text{
  color: #ffffff;
}

.testimonial-style-two .sec-title span.top-text:before, 
.testimonial-style-two .sec-title span.top-text:after {
  background-image: linear-gradient(#7dc8a0 0%, #7dc8a0 100%), linear-gradient(#7dc8a0 0%, #7dc8a0 100%);
  background-size: 100% 2px, 100% 2px;
  background-position: 0px 4px, 0px 17px;
  background-repeat: no-repeat;
}

.testimonial-block-one{
  position: relative;
  height: 100%;
}

.testimonial-block-one .inner-box{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  height: 100%;
  padding: 38px 36px 34px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 500ms ease;
}

.testimonial-block-one .inner-box:hover{
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(47, 113, 75, 0.60);
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.35);
}

.testimonial-block-one .inner-box .quote-icon{
  position: absolute;
  right: 28px;
  top: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2F714B;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0px 10px 25px rgba(47, 113, 75, 0.45);
  transition: all 500ms ease;
}

.testimonial-block-one .inner-box:hover .quote-icon{
  -webkit-transform: rotate(-8deg) scale(1.06);
  -ms-transform: rotate(-8deg) scale(1.06);
  transform: rotate(-8deg) scale(1.06);
  background: #245b3b;
}

.testimonial-block-one .inner-box .rating{
  position: relative;
  display: block;
  font-size: 13px;
  line-height: 1;
  color: #ffb300;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.testimonial-block-one .inner-box p{
  position: relative;
  display: block;
  color: #d6d6dd;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 26px;
}

.testimonial-block-one .inner-box .author-info{
  position: relative;
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.testimonial-block-one .inner-box .author-info .author-avatar{
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  margin-right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex: 0 0 auto;
  overflow: hidden;
}

.testimonial-block-one .inner-box .author-info .author-avatar img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonial-block-one .inner-box .author-info .author-meta h4{
  display: block;
  font-size: 19px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-block-one .inner-box .author-info .author-meta span{
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  color: #9e9ea8;
}


/** news-style-two **/

.news-style-two{
  position: relative;
  padding: 130px 0px 130px 0px;
}

.news-style-two .sec-title{
  margin-bottom: 80px;
}

.news-block-two .inner-box .post-info li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #696969;
  float: left;
  margin-right: 65px;
  padding-left: 23px;
}

.news-block-two .inner-box .post-info li:last-child{
  margin: 0px !important;
}

.news-block-two .inner-box .post-info li a{
  color: #696969;
}

.news-block-two .inner-box .post-info li a:hover{

}

.news-block-two .inner-box .post-info li i{
  position: absolute;
  left: 0px;
  top: 4px;
}

.news-block-two .inner-box .post-info li:before{
  position: absolute;
  content: '';
  background: #070719;
  width: 5px;
  height: 5px;
  top: 10px;
  right: -36px;
  border-radius: 50%;
}

.news-block-two .inner-box .post-info li:last-child:before{
  display: none;
}

.news-block-two .inner-box .category {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 51px;
}

.news-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 17px;
}

.news-block-two .inner-box h3 a{
  display: inline-block;
  color: #070719;
}

.news-block-two .inner-box h3 a:hover{

}

.news-block-two .inner-box p{
  position: relative;
  padding-bottom: 34px;
  margin-bottom: 27px;
  border-bottom: 1px solid #e2e2e2;
}

.news-block-two .inner-box{
  position: relative;
  display: block;
  padding: 33px 40px 31px 40px;
  border: 1px solid #e4e4e4;
  z-index: 1;
}

.news-block-two .inner-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  opacity: 0;
  z-index: -1;
  transition: all 500ms ease;
}

.news-block-two .inner-box:hover:before{
  height: 100%;
  opacity: 1;
}

.news-block-two .inner-box .post-date{
  position: absolute;
  right: 35px;
  top: 35px;
}

.news-block-two .inner-box .post-date h3{
  font-size: 35px;
  line-height: 35px;
  font-weight: 700;
  margin: 0px;
}

.news-block-two .inner-box .post-date span{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  font-family: 'Roboto', sans-serif;
  color: #696969;
  margin-left: 5px;
}


/** clients-section **/

.clients-section{
  position: relative;
  padding: 100px 0px 180px 0px;
}

.clients-section .clients-title{
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.clients-section .clients-title span{
  position: relative;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #696969;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0px 50px;
}

.clients-section .clients-title span:before,
.clients-section .clients-title span:after{
  position: absolute;
  content: '';
  top: 50%;
  width: 34px;
  height: 2px;
  background: #2F714B;
}

.clients-section .clients-title span:before{
  left: 0px;
}

.clients-section .clients-title span:after{
  right: 0px;
}

.clients-section .clients-logo-box{
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-section .clients-logo-box img{
  display: block;
  width: 180px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.6;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  transition: all 500ms ease;
}

.clients-section .clients-logo-box img:hover{
  opacity: 1;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
}

.clients-section .brands-carousel{
  position: relative;
  overflow: hidden;
}

.clients-section .brands-track{
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  animation: brands-scroll 40s linear infinite;
}

.clients-section .brands-carousel:hover .brands-track{
  animation-play-state: paused;
}

.clients-section .brands-set{
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 90px;
  padding-right: 90px;
}

@keyframes brands-scroll{
  from{
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  to{
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}


/*** 

====================================================================
                        About-Page
====================================================================

***/


/** page-title **/

.page-title{
  position: relative;
  width: 100%;
  padding: 168px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title:before{
  position: absolute;
  content: '';
  background: #070719;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.65;
}

.page-title .title{
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.page-title .title h1{
  font-size: 100px;
  line-height: 100px;
  color: #ffffff;
  font-weight: 700;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  padding-right: 28px;
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.page-title .bread-crumb li:last-child{
  padding: 0px;
  margin: 0px;
}

.page-title .bread-crumb li a{
  color: #fff;
}

.page-title .bread-crumb li a:hover{

}

.page-title .bread-crumb li:before{
  position: absolute;
  content: "\f105";
  font-size: 18px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  top: -3px;
  right: 0px;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}


/** feature-style-two **/

.feature-style-two{
  position: relative;
  padding: 130px 0px 130px 0px;
  z-index: 1;
}

.feature-block-one .inner-box{
  position: relative;
  display: block;
  padding: 60px 30px 48px 30px;
}

.feature-block-one .inner-box:before{
  position: absolute;
  content: '';
  background: #ffffff;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: skew(-7deg);
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.03);
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover:before{

}

.feature-block-one .inner-box .icon-box{
  position: relative;
  font-size: 100px;
  line-height: 80px;
  margin-bottom: 6px;
  transition: all 500ms ease;
}

.feature-block-one .inner-box:hover .icon-box,
.feature-block-one .inner-box:hover h3{
  color: #fff;
}

.feature-block-one .inner-box h3 {
  display: block;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  transition: all 500ms ease;
}

.feature-style-two .inner-content{
  position: relative;
  margin: 0px 20px;
}

.feature-style-two .feature-block{
  padding: 0px 10px;
}

.feature-style-two .sec-title{
  margin-bottom: 80px;
}

.feature-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 782px;
  background-size: cover;
  background-repeat: no-repeat;
}

.team-section.about-page:before{
  bottom: inherit;
  top: 0px;
  height: 508px;
}

.team-section.about-page .team-block-one .inner-box .lower-content{
  border: 1px solid #efefef;
}

.news-section.about-page:before{
  display: none;
}


/** chooseus-section **/

.chooseus-section{
  position: relative;
  padding: 130px 0px 130px 0px;
}

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

.content_block_5 .content-box .text{
  position: relative;
  margin-bottom: 43px;
  padding-left: 35px;
}

.content_block_5 .content-box .text p{
  line-height: 30px;
}

.content_block_5 .content-box .text:before{
  position: absolute;
  content: '';
  width: 5px;
  height: calc(100% - 20px);
  top: 8px;
  left: 0px;
}

.content_block_5 .content-box .list-item li{
  position: relative;
  display: block;
  float: left;
  width: 50%;
  line-height: 40px;
  padding-left: 55px;
  margin-bottom: 20px;
}

.content_block_5 .content-box .list-item li:before{
  position: absolute;
  content: "\f00c";
  font-family: 'Font Awesome 5 Pro';
  font-size: 15px;
  border: 2px solid #efefef;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  left: 0px;
  top: 0px;
}

.content_block_5 .content-box .list-item{
  padding-bottom: 30px;
}

.chooseus-section .sec-title{
  margin-bottom: 42px;
}

.chooseus-section .image-box{
  position: relative;
  display: block;
  margin-left: 50px;
  margin-top: 70px;
}

.chooseus-section .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.chooseus-section .image-box .image img{
  width: 100%;
}

.chooseus-section .image-box .image:before{
  position: absolute;
  top: 0;
  left: -80%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.chooseus-section .image-box .image:hover:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.chooseus-section .image-box .image-bg{
  position: absolute;
  left: 250px;
  top: -72px;
  width: 5000px;
  height: 100%;
}


/*** 

====================================================================
                        Shop-Page
====================================================================

***/

.shop-page-section{
  position: relative;
  padding: 130px 0px 225px 0px;
}

.shop-sidebar .sidebar-search{
  position: relative;
  display: block;
  padding: 10px 20px;
  margin-bottom: 40px;
}

.shop-sidebar .sidebar-search .form-group{
  position: relative;
  margin: 0px;
}

.shop-sidebar .sidebar-search .form-group input[type='search']{
  position: relative;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 50px 10px 20px;
  transition: all 500ms ease;
}

.shop-sidebar .sidebar-search .form-group input::-webkit-input-placeholder{
  color:#fff;
}

.shop-sidebar .sidebar-search .form-group button{
  position: absolute;
  top: 13px;
  right: 20px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  background: transparent;
  transition: all 500ms ease;
}

.shop-sidebar .sidebar-search .form-group input:focus{
  border-color: #fff;
}

.shop-sidebar .sidebar-widget{
  position: relative;
  border: 2px solid #ececec;
  padding: 30px 40px;
  margin-bottom: 40px;
}

.shop-sidebar .sidebar-widget:last-child{
  margin-bottom: 0px;
}

.default-sidebar .widget-title{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.default-sidebar .widget-title h3{
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

.shop-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.shop-sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}

.shop-sidebar .category-widget .category-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Rubik', sans-serif;
  color: #070719;
  font-weight: 600;
  padding-left: 12px;
}

.shop-sidebar .category-widget .category-list li a:hover{

}

.shop-sidebar .category-widget .category-list li a:before{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  color: #5b5858;
  font-weight: 400;
  left: 0px;
  top: -2px;
}

.shop-sidebar .category-widget{
  padding: 33px 40px 33px 40px;
}

.shop-sidebar .post-widget .post{
  position: relative;
  display: block;
  padding-left: 100px;
  padding-bottom: 32px;
  margin-bottom: 34px;
  border-bottom: 2px solid #ececec;
}

.shop-sidebar .post-widget .post:last-child{
  margin-bottom: 0px;
  border-bottom: none;
}

.shop-sidebar .post-widget .post .post-thumb{
  position: absolute;
  left: 0px;
  top: -4px;
  width: 80px;
  height: 80px;
  background: #e8ebf1;
  border-radius: 10px;
  transition: all 500ms ease;
}

.shop-sidebar .post-widget .post:hover .post-thumb{

}

.shop-sidebar .post-widget .post .post-thumb img{
  width: 100%;
  border-radius: 10px;
}

.shop-sidebar .post-widget .post .rating li{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  float: left;
  margin-right: 5px;
}

.shop-sidebar .post-widget .post .rating li:last-child{
  margin: 0px !important;
}

.shop-sidebar .post-widget .post .rating{
  margin-bottom: 1px;
}

.shop-sidebar .post-widget .post h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.shop-sidebar .post-widget .post h5 a{
  display: inline-block;
  color: #131313;
}

.shop-sidebar .post-widget .post h5 a:hover{

}

.shop-sidebar .post-widget .post .price{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #696969;
  font-weight: 600;
}

.shop-sidebar .post-widget{
  padding: 39px 40px 8px 40px;
}

.shop-sidebar .post-widget .widget-title{
  margin-bottom: 33px;
}

.shop-sidebar .progress-box .bar{
  background: #ececec;
  height: 7px;
}

.shop-sidebar .progress-box .bar-inner{
  height: 7px;
}

.default-sidebar .other-box .inner{
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  padding: 133px 50px 143px 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.default-sidebar .other-box .inner:before{
  position: absolute;
  content: '';
  background: #070719;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.75;
}

.default-sidebar .other-box .inner h2{
  display: block;
  font-size: 40px;
  line-height: 50px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 24px;
}

.default-sidebar .other-box .inner h2 span{
  font-weight: 300;
}

.nice-select:after{
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  font-size: 18px;
  top: 7px;
  right: 5px;
  color: #5b5858;
  font-weight: 400;
  border: none !important;
  transform: rotate(0deg) !important;
}

.nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  line-height: 60px;
  border: none !important;
  background: transparent;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  color: #070719;
  font-weight: 500;
  padding: 5px 23px 5px 10px;
}

.shop-page-section .our-shop .item-shorting{
  position: relative;
  margin-bottom: 40px;
}

.shop-page-section .item-shorting .text h5{
  font-size: 18px;
  line-height: 70px;
  font-weight: 500;
}

.nice-select .list{
  min-width: 160px !important;
}

.shop-page-section .pagination-wrapper{
  position: relative;
  padding-top: 30px;
}

.nice-select .option{
  font-size: 15px;
}

.shop-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 56px;
}

.shop-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8ebf1;
}

.shop-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.shop-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.shop-block-one .inner-box .lower-content{
  position: relative;
  padding-top: 23px;
}

.shop-block-one .inner-box .lower-content .rating li{
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 18px;
  margin-right: 3px;
}

.shop-block-one .inner-box .lower-content .rating li:last-child{
  margin: 0px !important;
}

.shop-block-one .inner-box .lower-content .rating{
  position: relative;
  margin-bottom: 0px;
}

.shop-block-one .inner-box .lower-content h5{
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.shop-block-one .inner-box .lower-content h5 a{
  display: inline-block;
  color: #070719;
}

.shop-block-one .inner-box .lower-content h5 a:hover{

}

.shop-block-one .inner-box .lower-content .price{
  position: absolute;
  top: 38px;
  right: 0px;
  font-size: 24px;
  line-height: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}


/** shop-details **/

.shop-details{
  position: relative;
}

.product-details-content{
  position: relative;
  padding: 130px 0px;
}

.product-details-content .slider-content{
  position: relative;
  display: block;
}

.product-details-content .slider-content .slider-pager{
  position: absolute;
  left: 0px;
  top: 0px;
  height: 586px;
}

.product-details-content .slider-content .slider-pager .thumb-box li{
  margin-bottom: 23px;
  position: relative;
  width: 170px;
  height: 180px;
  cursor: pointer;
  z-index: 9;
}

.bx-viewport{
  min-height: 586px !important;
}

.product-details-content .slider-content .slider-pager .thumb-box li:last-child{
  margin-bottom: 0px;
}

.product-details-content .slider-content .product-image{
  position: relative;
  padding-left: 195px;
}

.product-details-content .slider-content .product-image .image{
  position: relative;
  display: block;
}

.product-details-content .slider-content .product-image .image img{
  width: 100%;
}

.product-details-content .slider-inner{
  position: relative;
  margin-right: -30px;
  height: 586px;
}

.product-details-content .product-details{
  position: relative;
  margin-left: 70px;
}

.product-details-content .product-details h2{
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 13px;
}

.product-details-content .product-details .rating li{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  float: left;
  margin-right: 5px;
}

.product-details-content .product-details .rating li:last-child{
  margin: 0px !important;
}

.product-details-content .product-details .rating{
  margin-bottom: 14px;
}

.product-details-content .product-details h5{
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 19px;
  text-transform: uppercase;
}

.product-details-content .product-details .text{
  margin-bottom: 24px;
  padding-right: 50px;
}

.product-details-content .product-details .text p{
  margin-bottom: 10px;
  line-height: 30px;
}

.product-details-content .product-details .text p:last-child{
  margin-bottom: 0px;
}

.product-details-content .product-details .color-box{
  margin-bottom: 30px;
}

.product-details-content .product-details .color-box h3{
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 13px;
}

.product-details-content .product-details .color-box .color-list .color{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

.product-details-content .product-details .color-box .color-list .color:last-child{
  margin: 0px !important;
}

.product-details-content .product-details .color-box .color-list .color-1{

}

.product-details-content .product-details .color-box .color-list .color-2{
  
}

.product-details-content .product-details .color-box .color-list .color-3{
  
}

.product-details-content .product-details .color-box .color-list .color-4{
  
}

.addto-cart-box .clearfix li{
  position: relative;
  display: inline-block;
}

.addto-cart-box .input-group{
  position: relative;
  display: table;
  border-collapse: separate;
  max-width: 50px;
  width: 100%;
  height: 33px;
}

.addto-cart-box button{
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 26px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 28px;
  cursor: pointer;
  transition: all 500ms ease;
}

.addto-cart-box button:hover{
  background: #070719;
}

.addto-cart-box .item-quantity {
  position: relative;
  display: inline-block;
  max-width: 130px;
  width: 100%;
  float: left;
  padding: 0px 40px;
  margin-right: 30px;
  border: 1px solid #dddddd;
  z-index: 1;
  margin-top: 4px;
}

.addto-cart-box input.quantity-spinner {
  line-height: 33px;
  height: 33px;
  width: 43px !important;
  padding: 0px !important;
  box-shadow: none !important;
  font-family: 'Rubik', sans-serif;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  background: transparent;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-down{
  position: absolute;
  height: 33px;
  width: 30px;
  background: transparent;
  padding: 0px 0px;
  left: -34px;
  top: -32px;
  border-right: none;
  border-radius: 0px;
}

.bootstrap-touchspin .input-group-btn-vertical > .btn.bootstrap-touchspin-up{
  position: absolute;
  height: 33px;
  width: 30px;
  background: transparent;
  padding: 0px 0px;
  right: -34px;
  top: -32px;
  border-left: none;
  margin-top: 0px;
  border-radius: 0px;
}

.bootstrap-touchspin .glyphicon-chevron-up:before {
  content: "\f067";
  font-size: 12px;
  font-style: normal;
  color: #444444;
  font-family: 'Font Awesome 5 pro';
  font-weight: 700;
}

.bootstrap-touchspin .glyphicon-chevron-down:before {
  content: "\f068";
  font-size: 12px;
  font-style: normal;
  color: #444444;
  font-weight: 700;
  font-family: 'Font Awesome 5 pro';
}

.bootstrap-touchspin .input-group-btn-vertical{
  position: absolute;
  width: 100%;
}

.bootstrap-touchspin .input-group-btn-vertical i{
  top: 2px;
  left: 7px;
  font-size: inherit !important; 
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{
  margin-top: 0px;
}

.tabs-box .tab{
  position:relative;
  display:none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab{
  display:block;  
}

.tabs-box .tab{
  transform:scale(0.9,0.9) translateY(0px);
}

.tabs-box .tab.active-tab{
  transform:scale(1) translateY(0px);
}

.shop-details .product-discription .tabs-content .customer-review .single-review{
  position: relative;
  margin-bottom: 37px;
}

.shop-details .product-discription .tabs-content .customer-review .single-review:last-child{
  margin-bottom: 0px;
}

.shop-details .product-discription .tabs-content .customer-review .single-review .image-box{
  position: absolute;
  left: 0px;
  top: 3px;
  width: 100px;
  height: 100px;
  line-height: 80px;
  border-radius: 5px;
  overflow: hidden;
}

.shop-details .product-discription .tabs-content .customer-review .single-review .image-box img{
  width: 100%;
  border-radius: 5px;
}

.shop-details .product-discription .tabs-content .customer-review .single-review .inner{
  position: relative;
  padding-left: 130px;
}

.single-product .product-discription .tabs-content .customer-review .single-review .inner .rating{
  position: relative;
}

.shop-details .product-discription .tabs-content .customer-review .single-review .inner .rating li{
  position: relative;
  display: inline-block;
  font-size: 13px;
  margin-right: 2px;
}

.shop-details .product-discription .tabs-content .customer-review .single-review .inner .rating li:last-child{
  margin-right: 0px;
}

.shop-details .product-discription .tabs-content .customer-review .single-review .inner h5{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.shop-details .product-discription .tabs-content .customer-review .single-review .inner h5 span{
  font-size: 15px;
  font-weight: 600;
  color: #93959e; 
}

.shop-details .product-discription .tabs-content .customer-review .single-review .inner p{
  line-height: 28px;
  color: #93959e;
}

.shop-details .product-discription .tabs-content .customer-review h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}

.shop-details .product-discription .tabs-content .customer-review{
  position: relative;
  display: block;
}

.shop-details .product-discription .tabs-content .customer-comments{
  position: relative;
  padding-left: 40px;
}

.shop-details .product-discription .tabs-content .customer-comments .rating-box p{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #93959e;
  margin-right: 12px;
}

.shop-details .product-discription .tabs-content .customer-comments .rating-box .rating{
  position: relative;
  display: inline-block;
}

.shop-details .product-discription .tabs-content .customer-comments .rating-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 13px;
  margin-right: 2px;
}

.shop-details .product-discription .tabs-content .customer-comments .rating-box .rating li:last-child{
  margin-right: 0px;
}

.shop-details .product-discription .tabs-content .customer-comments .rating-box{
  position: relative;
  margin-bottom: 17px;
}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group{
  position: relative;
  margin-bottom: 20px;
}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group label{
  position: relative;
  display: block;
  font-size: 15px;
  color: #93959e;
  margin-bottom: 5px;
}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group input[type='text'],
.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group input[type='email'],
.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 15px;
  color: #93959e;
  background: transparent;
  transition: all 500ms ease;
}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group textarea{
  height: 150px;
  resize: none;
}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group input:focus,
.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group textarea:focus{

}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group button{
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 26px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 28px;
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group button:hover{
  background: #070719;
}

.shop-details .product-discription .tabs-content .customer-comments h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group:last-child{
  margin-bottom: 0px;
}

.shop-details .product-discription .tabs-content .customer-comments .comment-form .form-group.message-btn{
  margin-top: 10px;
}

.shop-details .product-discription{
  position: relative;
  padding: 125px 0px;
  border-bottom: 1px solid #e4e4e4;
}

.shop-details .product-discription .tab-btns{
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #dddddd;
  margin-bottom: 33px;
}

.shop-details .product-discription .tab-btns li{
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #222222;
  padding-bottom: 14px;
  margin-right: 45px;
  cursor: pointer;
  transition: all 500ms ease;
}

.shop-details .product-discription .tab-btns li.active-btn,
.shop-details .product-discription .tab-btns li:hover{

}

.shop-details .product-discription .tab-btns li:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 2px;
  left: 0px;
  bottom: -2px;
  transition: all 500ms ease;
}

.shop-details .product-discription .tab-btns li.active-btn:before,
.shop-details .product-discription .tab-btns li:hover:before{
  width: 100%;
}

.shop-details .product-discription .tabs-content .content-box{
  padding-right: 100px;
}

.shop-details .product-discription .tabs-content .content-box p{
  margin-bottom: 27px;
}

.shop-details .product-discription .tabs-content .content-box p:last-child{
  margin-bottom: 0px;
}

.other-shop-section{
  position: relative;
  padding: 130px 0px 153px 0px;
}

.other-shop-section .sec-title{
  margin-bottom: 80px;
}


/** error-section **/

.error-section{
  position: relative;
  padding: 100px 0px 200px 0px;
}

.error-section .inner-box .theme-btn-one i{
  margin-right: 10px;
}

.error-section .inner-box .error-image{
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}

.error-section .inner-box h1{
  font-size: 200px;
  line-height: 200px;
  color: #070719;
  font-weight: 900;
  margin-bottom: 10px;
}

.error-section .inner-box h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

.chooseus-section.style-two .content_block_5 .content-box{
  margin-left: 70px;
}

.chooseus-section.style-two .image-box{
  margin: 0px;
}

.service-section.service-page{
  padding: 130px 0px 320px 0px;
}


/** video-section **/

.video-section{
  position: relative;
  background: #fff;
  padding: 275px 0px 130px 0px;
  margin-top: -145px;
}

.video-section .video-inner{
  position: relative;
  width: 100%;
  padding: 250px 0px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.video-section .video-inner:before{
  position: absolute;
  content: '';
  background: #030401;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.55;
}

.video-section .video-inner .video-btn a{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 75px;
  line-height: 75px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  border-radius: 7px;
}

.video-section .video-inner .video-btn a:hover{
  background: #fff;
}

.before-none:before{
  display: none !important;
}


/** service-details **/

.service-details{
  position: relative;
  padding: 130px 0px 215px 0px;
}

.service-details-content .image-box{
  position: relative;
  display: block;
}

.service-details-content .image-box img{
  width: 100%;
}

.service-details-content .inner{
  position: relative;
  padding-top: 43px;
  margin-bottom: 54px;
}

.service-details-content .inner h2{
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 21px;
}

.service-details-content .inner p{
  margin-bottom: 27px;
}

.service-details-content .inner .list-item li{
  position: relative;
  display: inline-block;
  line-height: 32px;
  margin-bottom: 15px;
  padding-left: 70px;
}

.service-details-content .inner .list-item li:last-child{
  margin-bottom: 0px;
}

.service-details-content .inner .list-item li:before{
  position: absolute;
  content: "\f00c";
  font-family: 'Font Awesome 5 Pro';
  font-size: 18px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  top: 8px;
}

.service-details-content .two-column .image-box{
  margin: 0px;
}

.service-details-content .two-column .text h3{
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details-content .two-column .text p{
  margin-bottom: 20px;
}

.service-details-content .two-column .text .list-item li{
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #070719;
  padding-left: 33px;
  margin-bottom: 13px;
}

.service-details-content .two-column .text .list-item li:last-child{
  margin-bottom: 0px;
}

.service-details-content .two-column .text .list-item li:before{
  position: absolute;
  content: "\f00c";
  font-family: 'Font Awesome 5 Pro';
  font-size: 18px;
  font-weight: 400;
  left: 0px;
  top: 0px;
}

.service-details-content .two-column{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.service-details-content .accordion-box .block{
  border: 1px solid #eaeaea;
  transition: all 0ms ease;
}

.service-details-content .accordion-box .block.active-block{

}

.service-details-content .accordion-box .block .acc-btn{
  position: relative;
  display: block;
  padding: 18px 30px 19px 30px;
}

.service-details-content .accordion-box .block .acc-btn.active{
  padding-bottom: 11px;
}

.service-details-content .accordion-box .block .acc-btn h6{
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.service-details-content .accordion-box .block .acc-content{
  padding: 0px 30px 21px 30px;
}

.service-details-content .accordion-box .block .acc-content p{
  line-height: 22px;
}

.service-details-content .accordion-box .block .acc-btn .icon-outer{
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  right: 17px;
  top: 16px;
}

.service-sidebar .category-widget{
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.service-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.service-sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}

.service-sidebar .category-widget .category-list li a{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Roboto', sans-serif;
  color: #070719;
  font-weight: 700;
  background: #f5f7fa;
  padding: 19.5px 35px;
  z-index: 1;
}

.service-sidebar .category-widget .category-list li a:after{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  font-size: 18px;
  font-weight: 400;
  top: 19px;
  right: 35px;
  transition: all 500ms ease;
}

.service-sidebar .category-widget .category-list li a:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.service-sidebar .category-widget .category-list li a.current:before,
.service-sidebar .category-widget .category-list li a:hover:before{
  width: 100%;
}

.service-sidebar .category-widget .category-list li a.current,
.service-sidebar .category-widget .category-list li a:hover{
  color: #fff;
}

.service-sidebar .category-widget .category-list li a.current:after,
.service-sidebar .category-widget .category-list li a:hover:after{
  color: #ffffff;
}

.service-sidebar .contact-widget{
  position: relative;
  display: block;
  border: 2px solid #eaeaea;
  padding: 33px 40px 40px 40px;
  margin-bottom: 40px;
}

.service-sidebar .contact-widget .widget-title{
  margin-bottom: 28px;
}

.service-sidebar .contact-widget .message-form .form-group{
  position: relative;
  margin-bottom: 10px;
}

.service-sidebar .contact-widget .message-form .form-group:last-child{
  margin-bottom: 0px;
}

.service-sidebar .contact-widget .message-form .form-group input[type='text'],
.service-sidebar .contact-widget .message-form .form-group input[type='email'],
.service-sidebar .contact-widget .message-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #f5f7fa;
  border: 1px solid #f5f7fa;
  font-size: 15px;
  font-weight: 500;
  color: #696969;
  padding: 10px 30px;
  transition: all 500ms ease;
}

.service-sidebar .contact-widget .message-form .form-group textarea{
  height: 150px;
  resize: none;
}

.service-sidebar .contact-widget .message-form .form-group input:focus,
.service-sidebar .contact-widget .message-form .form-group textarea:focus{

}


.gallery-page-section{
  position: relative;
  padding: 130px 0px 100px 0px;
  z-index: 1;
  margin-bottom: -130px;
}

.gallery-page-section .project-block-one .inner-box{
  margin-bottom: 30px;
}


/*** 

====================================================================
                        Blog-Page
====================================================================

***/

.sidebar-page-container{
  position: relative;
  padding: 130px 0px 215px 0px;
}

.news-block-three .inner-box{
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.news-block-three .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: -webkit-linear-gradient(0deg, rgba(7,7,25,1), rgba(47,113,75,1) 100%);
}

.news-block-three .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.news-block-three .inner-box:hover .image-box img{
  opacity: 0.2;
}

.news-block-three .inner-box .lower-content{
  position: relative;
  padding-top: 32px;
}

.news-block-three .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #696969;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 20px;
  padding-left: 23px;
}

.news-block-three .inner-box .lower-content .post-info li:last-child{
  margin: 0px !important;
}

.news-block-three .inner-box .lower-content .post-info li i{
  position: absolute;
  left: 0px;
  top: 5px;
}

.news-block-three .inner-box .lower-content .post-info li a{
  color: #696969;
}

.news-block-three .inner-box .lower-content .post-info li a:hover{

}

.news-block-three .inner-box .lower-content .post-info{
  position: relative;
  margin-bottom: 12px;
}

.news-block-three .inner-box .lower-content h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 17px;
}

.news-block-three .inner-box .lower-content h2 a{
  display: inline-block;
  color: #14212b;
}

.news-block-three .inner-box .lower-content h2 a:hover{

}

.news-block-three .inner-box .lower-content p{
  margin-bottom: 25px;
}

.news-block-four .inner-box{
  position: relative;
  display: block;
  background: #070719;
  padding: 41px 45px 44px 45px;
  margin-bottom: 40px;
}

.news-block-four .inner-box .quote{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.news-block-four .inner-box .post-info li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #8394a2;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 20px;
  padding-left: 23px;
}

.news-block-four .inner-box .post-info li:last-child{
  margin: 0px !important;
}

.news-block-four .inner-box .post-info li i{
  position: absolute;
  left: 0px;
  top: 5px;
}

.news-block-four .inner-box .post-info li a{
  color: #8394a2;
}

.news-block-four .inner-box .post-info li a:hover{

}

.news-block-four .inner-box .post-info{
  position: relative;
  margin-bottom: 12px;
}

.news-block-four .inner-box h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
}

.news-block-four .inner-box h2 a{
  display: inline-block;
  color: #ffffff;
}

.news-block-four .inner-box h2 a:hover{

}

.news-block-three .inner-box .image-box .video-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.news-block-three .inner-box .image-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 130px;
  height: 130px;
  line-height: 140px;
  font-size: 18px;
  background: #ffffff;
  text-align: center;
  border-radius: 50%;
}

.news-block-three .inner-box .image-box .video-btn a:after, 
.news-block-three .inner-box .image-box .video-btn a:before {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.news-block-three .inner-box .image-box .video-btn a:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.blog-sidebar .sidebar-widget{
  position: relative;
  display: block;
  border: 2px solid #eaeaea;
  padding: 30px 40px;
  margin-bottom: 30px;
}

.blog-sidebar .sidebar-search{
  margin-bottom: 30px;
}

.blog-sidebar .sidebar-search .search-form .form-group{
  position: relative;
  margin: 0px;
}

.blog-sidebar .sidebar-search .search-form .form-group input[type='search']{
  position: relative;
  width: 100%;
  height: 80px;
  border: 2px solid #eaeaea;
  padding: 10px 110px 10px 30px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  color: #070719;
  font-weight: 500;
  transition: all 500ms ease;
}

.blog-sidebar .sidebar-search .search-form .form-group input::-webkit-input-placeholder{
  color:#070719;
}

.blog-sidebar .sidebar-search .search-form .form-group input:focus{

}

.blog-sidebar .sidebar-search .search-form .form-group button{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

.blog-sidebar .sidebar-widget .widget-title{
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 18px;
  margin-bottom: 11px;
}

.blog-sidebar .category-widget .category-list li{
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.blog-sidebar .category-widget .category-list li:last-child{
  margin-bottom: 0px;
}

.blog-sidebar .category-widget .category-list li a{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #696969;
  font-weight: 600;
  border-bottom: 2px solid #eaeaea;
  padding: 14px 0px;
}

.blog-sidebar .category-widget .category-list li:last-child a{
  border-bottom: none;
}

.blog-sidebar .category-widget .category-list li a:hover{

}

.blog-sidebar .category-widget .category-list li a:before{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  top: 12px;
  right: 0px;
  font-size: 18px;
  font-weight: 400;
}

.blog-sidebar .category-widget{
  padding: 33px 40px 18px 40px;
}

.blog-sidebar .post-widget .post{
  position: relative;
  padding: 0px 0px 0px 90px;
  min-height: 74px;
  margin-bottom: 16px;
}

.blog-sidebar .post-widget .post:last-child{
  margin-bottom: 0px;
}

.blog-sidebar .post-widget .post .post-thumb{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 75px;
  height: 70px;
  overflow: hidden;
}

.blog-sidebar .post-widget .post .post-thumb img{
  width: 100%;
  transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb img{
  opacity: 0.2;
}

.blog-sidebar .post-widget .post .post-date{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
}

.blog-sidebar .post-widget .post .post-date i{
  margin-right: 10px;
  font-size: 15px;
}

.blog-sidebar .post-widget .post h6{
  display: block;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
}

.blog-sidebar .post-widget .post h6 a{
  display: inline-block;
  color: #070719;
}

.blog-sidebar .post-widget .post h6 a:hover{

}

.blog-sidebar .post-widget .widget-title{
  margin-bottom: 31px;
}

.blog-sidebar .post-widget{
  padding: 33px 40px 35px 40px;
}

.blog-sidebar .tags-widget .tags-list li{
  position: relative;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog-sidebar .tags-widget .tags-list li a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #696969;
  font-weight: 500;
  background: #f5f7fa;
  padding: 1px 15px;
}

.blog-sidebar .tags-widget .tags-list li a:hover{
  color: #fff;
}

.blog-sidebar .tags-widget .widget-title{
  margin-bottom: 30px
}

.blog-sidebar .tags-widget{
  padding: 33px 40px 30px 40px;
}

.blog-sidebar .author-widget .inner-box .author-thumb{
  position: relative;
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.blog-sidebar .author-widget .inner-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.blog-sidebar .author-widget .inner-box h3{
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 3px;
}

.blog-sidebar .author-widget .inner-box .designation{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 9px;
}

.blog-sidebar .author-widget .inner-box p{
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 15px;
}

.blog-sidebar .author-widget .inner-box .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 8px;
}

.blog-sidebar .author-widget .inner-box .social-links li a{
  font-size: 15px;
  color: #696969;
}

.blog-sidebar .author-widget .inner-box .social-links li a:hover{

}

.blog-sidebar .author-widget{
  padding: 40px 40px 32px 40px;
}

.blog-details-content .news-block-three .inner-box:hover .image-box img{
  opacity: 1;
}

.blog-details-content blockquote{
  position: relative;
  display: block;
  background: #070719;
  padding: 42px 40px 43px 50px;
  margin-bottom: 34px;
}

.blog-details-content blockquote .quote{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.blog-details-content blockquote h2{
  font-size: 35px;
  line-height: 45px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 13px;
}

.blog-details-content blockquote p{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #dce8f1;
  font-weight: 500;
  padding-left: 72px;
}

.blog-details-content blockquote p:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  left: 0px;
  top: 11px;
}

.blog-details-content .news-block-three .inner-box .lower-content p{
  margin-bottom: 18px;
}

.blog-details-content .news-block-three .inner-box{
  margin-bottom: 34px;
}

.blog-details-content .inner .lower-box{
  position: relative;
  margin-bottom: 24px;
}

.blog-details-content .inner .lower-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  padding-left: 48px;
  margin-bottom: 16px;
}

.blog-details-content .inner .lower-box h3:before{
  position: absolute;
  content: "\f058";
  font-family: 'Font Awesome 5 Pro';
  font-size: 24px;
  font-weight: 400;
  left: 0px;
  top: 1px;
}

.blog-details-content .post-share-option h5{
  font-size: 18px;
  font-weight: 500;
}

.blog-details-content .post-share-option ul li{
  position: relative;
  display: inline-block;
}

.blog-details-content .post-share-option .tags-list li{
  font-size: 18px;
  color: #696969;
}

.blog-details-content .post-share-option .tags-list li a{
  color: #696969;
}

.blog-details-content .post-share-option ul li a:hover{

}

.blog-details-content .post-share-option .social-links li{
  margin-right: 15px;
}

.blog-details-content .post-share-option .social-links li:last-child{
  margin: 0px !important;
}

.blog-details-content .post-share-option .social-links li a{
  font-size: 15px;
  color: #696969;
}

.blog-details-content .post-share-option{
  position: relative;
  margin-bottom: 44px;
}

.blog-details-content .author-box{
  position: relative;
  display: block;
  background: #f5f7fa;
  padding: 49px 50px 49px 260px;
  margin-bottom: 50px;
}

.blog-details-content .author-box .author-thumb{
  position: absolute;
  left: 50px;
  top: 67px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
}

.blog-details-content .author-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.blog-details-content .author-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-details-content .author-box p{
  margin-bottom: 14px;
}

.blog-details-content .author-box .social-links li{
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.blog-details-content .author-box .social-links li:last-child{
  margin: 0px !important;
}

.blog-details-content .author-box .social-links li a{
  display: inline-block;
  font-size: 15px;
  color: #696969;
}

.blog-details-content .author-box .social-links li a:hover{

}

.blog-details-content .post-nav{
  position: relative;
  display: block;
  margin-bottom: 55px;
}

.blog-details-content .post-nav .image-box{
  position: absolute;
  top: 1px;
  width: 75px;
  height: 70px;
}

.blog-details-content .post-nav .image-box img{
  width: 100%;
}

.blog-details-content .post-nav .left-nav .image-box{
  left: 0px;
}

.blog-details-content .post-nav .right-nav .image-box{
  right: 0px;
}

.blog-details-content .post-nav .left-nav{
  position: relative;
  padding-left: 90px;
}

.blog-details-content .post-nav .right-nav{
  position: relative;
  padding-right: 90px;
}

.blog-details-content .post-nav span{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 26px;
  color: #696969;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.blog-details-content .post-nav span i{

}

.blog-details-content .post-nav .right-nav span i{
  margin-left: 10px;
}

.blog-details-content .post-nav .left-nav span i{
  margin-right: 10px;
}

.blog-details-content .post-nav h5{
  display: block;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
}

.blog-details-content .post-nav h5 a{
  display: inline-block;
  color: #070719;
}

.blog-details-content .post-nav h5 a:hover{

}

.blog-details-content .other-post .news-block-one .inner-box .lower-content{
  border: 1px solid #eaeaea;
}

.blog-details-content .other-post{
  margin-bottom: 71px;
}

.blog-details-content .comment-box .title-box{
  position: relative;
  margin-bottom: 22px;
}

.blog-details-content .comment-box .title-box h2{
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
}

.blog-details-content .comment-box .comment{
  position: relative;
  padding-left: 130px;
  margin-bottom: 33px;
}

.blog-details-content .comment-box .comment:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comment-box .comment .thumb-box{
  position: absolute;
  left: 0px;
  top: 15px;
  width: 100px;
  height: 100px;
  border-radius: 50%
}

.blog-details-content .comment-box .comment .thumb-box img{
  width: 100%;
  border-radius: 50%;
}

.blog-details-content .comment-box .comment .comment-info{
  position: relative;
  margin-bottom: 7px;
}

.blog-details-content .comment-box .comment .comment-info h5{
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.blog-details-content .comment-box .comment .comment-info .post-date{
  display: inline-block;
  font-size: 15px;
  margin-left: 5px;
}

.blog-details-content .comment-box .comment .comment-inner p{
  margin-bottom: 8px;
}

.blog-details-content .comment-box .comment .comment-inner .reply-btn{
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  font-family: 'Roboto', sans-serif;
  color: #616161;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-details-content .comment-box .comment .comment-inner .reply-btn i{
  font-size: 18px;
  margin-left: 10px;
}

.blog-details-content .comment-box .comment .comment-inner .reply-btn:hover{

}

.blog-details-content .comment-box .comment.reply-comment{
  margin-left: 60px;
}

.blog-details-content .comment-box{
  margin-bottom: 70px;
}

.blog-details-content .comments-form-area .title-box{
  margin-bottom: 27px;
}

.blog-details-content .comments-form-area{
  position: relative;
  background: #f5f7fa;
  padding: 44px 50px 50px 50px;
}

.blog-details-content .comments-form-area .title-box h3{
  display: block;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}

.blog-details-content .comments-form-area .comment-form .form-group{
  position: relative;
  margin-bottom: 30px;
}

.blog-details-content .comments-form-area .comment-form .form-group:last-child{
  margin-bottom: 0px;
}

.blog-details-content .comments-form-area .comment-form .form-group input[type='text'],
.blog-details-content .comments-form-area .comment-form .form-group input[type='email'],
.blog-details-content .comments-form-area .comment-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-size: 15px;
  font-weight: 500;
  color: #070719;
  padding: 10px 50px 10px 30px;
  transition: all 500ms ease;
}

.blog-details-content .comments-form-area .comment-form .form-group textarea{
  height: 140px;
  resize: none;
}

.blog-details-content .comments-form-area .comment-form .form-group .field-input{
  position: relative;
}

.blog-details-content .comments-form-area .comment-form .form-group .field-input i{
  position: absolute;
  top: 28px;
  right: 26px;
  font-size: 14px;
  z-index: 1;
}

.blog-details-content .comments-form-area .comment-form .form-group input:focus,
.blog-details-content .comments-form-area .comment-form .form-group textarea:focus{

}


/*** 

====================================================================
                        Contact-Page
====================================================================

***/

.contact-info-section{
  position: relative;
  padding: 120px 0px;
}

.contact-info-section .content-box{
  position: relative;
  margin-right: 115px;
}

.contact-info-section .content-box .text{
  margin-bottom: 29px;
}

.contact-info-section .content-box .social-box h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 17px;
}

.contact-info-section .content-box .social-links li{
  position: relative;
  float: left;
  margin-right: 10px;
}

.contact-info-section .content-box .social-links li:last-child{
  margin: 0px !important;
}

.contact-info-section .content-box .social-links li a{
  display: inline-block;
  font-size: 15px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

.contact-info-section .content-box .social-links li:first-child a{
  background: #1771e6;
}

.contact-info-section .content-box .social-links li:nth-child(2) a{
  background: #1da1f2;
}

.contact-info-section .content-box .social-links li:nth-child(3) a{
  background: #2F714B;
}

.contact-info-section .content-box .social-links li:last-child a{
  background: #de0e88;
}

.contact-info-section .content-box .sec-title{
  margin-bottom: 23px;
}

.contact-info-section .inner-box{
  position: relative;
  display: block;
  border: 1px solid #eaeaea;
  margin: 0px 0px;
}

.contact-info-section .inner-box .single-item{
  position: relative;
  display: block;
  float: left;
  width: 50%;
  padding: 50px 50px 43px 50px;
}

.contact-info-section .inner-box .single-item .icon-box{
  position: relative;
  display: inline-block;
  font-size: 25px;
  color: #ffffff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
}

.contact-info-section .inner-box .single-item h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 9px;
}

.contact-info-section .inner-box .single-item p{
  line-height: 22px;
}

.contact-info-section .inner-box .single-item p a{
  color: #696969;
}

.contact-info-section .inner-box .single-item p a:hover{

}

.contact-info-section .inner-box .single-item:first-child{
  border-right: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.contact-info-section .inner-box .single-item:nth-child(2){
  border-bottom: 1px solid #eaeaea;
}

.contact-info-section .inner-box .single-item:nth-child(3){
  border-right: 1px solid #eaeaea;
}

.google-map-section{
  position: relative;
}

#contact-google-map{
  position: relative;
  width: 100%;
  height: 750px;
}

.contact-style-two{
  position: relative;
  padding-bottom: 215px;
}

.contact-style-two .inner-content{
  position: relative;
  display: block;
  background: #f5f7fa;
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
  margin-top: -130px;
  z-index: 1;
  padding: 73px 80px 80px 80px;
}

.contact-style-two .title-box{
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 27px;
}

.contact-style-two .title-box h3{
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}

.contact-style-two .default-form .form-group{
  position: relative;
  margin-bottom: 30px;
}

.contact-style-two .default-form .form-group:last-child{
  margin-bottom: 0px;
}

.contact-style-two .default-form .form-group input[type='text'],
.contact-style-two .default-form .form-group input[type='email'],
.contact-style-two .default-form .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 70px;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-size: 15px;
  font-weight: 500;
  color: #070719;
  padding: 10px 50px 10px 30px;
  transition: all 500ms ease;
}

.contact-style-two .default-form .form-group textarea{
  height: 140px;
  resize: none;
}

.contact-style-two .default-form .form-group i{
  position: absolute;
  top: 28px;
  right: 41px;
  font-size: 14px;
  z-index: 1;
}

.contact-style-two .default-form .form-group input:focus,
.contact-style-two .default-form .form-group textarea:focus{

}

.pb-215{
  padding-bottom: 215px !important;
}

/* ====================================================
   MVM Autoglass custom additions
   ==================================================== */

#about, #services, #gallery, #contact{
  scroll-margin-top: 80px;
}

/* ---- contact-style-two (custom layout) ---- */

.contact-style-two{
  padding: 100px 0px 100px 0px;
  background: #ffffff;
}

.contact-style-two .sec-title{
  margin-bottom: 55px;
}

.contact-info-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 35px;
  background: #23262d;
  height: 100%;
  border-radius: 8px;
}

.contact-info-inner .info-box{
  position: relative;
  display: flex;
  align-items: flex-start;
}

.contact-info-inner .info-box .icon-box{
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin-right: 18px;
  background: #2F714B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  transition: all 500ms ease;
}

.contact-info-inner .info-box:hover .icon-box{
  background: #ffffff;
  color: #2F714B;
}

.contact-info-inner .info-box .content h4{
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-info-inner .info-box .content p,
.contact-info-inner .info-box .content a{
  font-size: 15px;
  line-height: 24px;
  color: #b8bec7;
  transition: all 300ms ease;
}

.contact-info-inner .info-box .content a:hover{
  color: #c2e9d6;
}

.contact-style-two .form-inner{
  position: relative;
  display: block;
  background: #f5f7fa;
  padding: 45px 50px 50px 50px;
  height: 100%;
  border-radius: 8px;
}

.contact-style-two .form-inner .form-group{
  position: relative;
  margin-bottom: 22px;
}

.contact-style-two .form-inner label{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #23262d;
  margin-bottom: 8px;
}

.contact-style-two .form-inner .form-group input[type='text'],
.contact-style-two .form-inner .form-group input[type='email'],
.contact-style-two .form-inner .form-group input[type='tel'],
.contact-style-two .form-inner .form-group select,
.contact-style-two .form-inner .form-group textarea{
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  background: #ffffff;
  border: 1px solid #e2e6ec;
  font-size: 15px;
  font-weight: 400;
  color: #23262d;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 500ms ease;
}

.contact-style-two .form-inner .form-group select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F714B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  cursor: pointer;
}

.contact-style-two .form-inner .form-group textarea{
  height: 130px;
  resize: none;
}

.contact-style-two .form-inner .form-group input:focus,
.contact-style-two .form-inner .form-group select:focus,
.contact-style-two .form-inner .form-group textarea:focus{
  border-color: #2F714B;
  box-shadow: 0px 8px 20px rgba(47, 113, 75, 0.12);
  outline: none;
}

.contact-style-two .form-inner .form-group .theme-btn{
  cursor: pointer;
}

.contact-style-two .form-inner .form-group label.error{
  color: #d64545;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 0px;
}

.contact-style-two .form-inner .form-group input.error,
.contact-style-two .form-inner .form-group select.error,
.contact-style-two .form-inner .form-group textarea.error{
  border-color: #d64545;
}

.form-result{
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
  color: #2F714B;
}

/* ---- MVM CTA section ---- */

.mvm-cta{
  padding: 0px 0px 187px 0px;
}

.mvm-cta .inner-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  overflow: hidden;
}

.mvm-cta .inner-container::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  left: 0px;
  background: linear-gradient(100deg, rgba(7,7,25,0.92) 0%, rgba(7,7,25,0.72) 55%, rgba(47,113,75,0.55) 100%);
  clip-path: none;
  z-index: 0;
}

.mvm-cta .inner-container .text,
.mvm-cta .inner-container .btn-box{
  position: relative;
  z-index: 1;
}

.mvm-cta .inner-container .btn-box{
  margin-top: 0px;
}

.mvm-cta .inner-container .text h2 span{
  font-weight: 300;
  color: #c2e9d6;
}

.mvm-cta.mvm-cta-online{
  padding: 0px;
}

.mvm-cta.mvm-cta-online .inner-container .text,
.mvm-cta.mvm-cta-online .inner-container .btn-box{
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.mvm-cta.mvm-cta-online .inner-container .btn-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .theme-btn{
  min-width: 252px;
  padding: 17px 42px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffffff;
  box-shadow: 0px 12px 28px -10px rgba(47, 113, 75, 0.55);
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .theme-btn:before,
.mvm-cta.mvm-cta-online .inner-container .btn-box .theme-btn:after{
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  border-radius: 8px;
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .theme-btn:before{
  background: -webkit-linear-gradient(135deg, #2F714B 0%, #3f9b6a 100%);
  background: linear-gradient(135deg, #2F714B 0%, #3f9b6a 100%);
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .theme-btn:after{
  background: -webkit-linear-gradient(135deg, #1f5436 0%, #2F714B 100%);
  background: linear-gradient(135deg, #1f5436 0%, #2F714B 100%);
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .theme-btn i{
  margin-left: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .theme-btn:hover{
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0px 18px 36px -12px rgba(47, 113, 75, 0.65);
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .theme-btn:hover i{
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .btn-loc{
  background: #ffffff;
  color: #2F714B;
  border: 1px solid #ffffff;
  text-shadow: none;
  box-shadow: 0px 12px 28px -10px rgba(47, 113, 75, 0.35);
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .btn-loc:before{
  background: #ffffff;
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .btn-loc:after{
  background: #dfece4;
}

.mvm-cta.mvm-cta-online .inner-container .btn-box .btn-loc:hover{
  background: #ffffff;
  color: #2F714B;
  border-color: #ffffff;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0px 18px 36px -12px rgba(47, 113, 75, 0.45);
}

/* ---- MVM Google Map ---- */

.google-map-section .auto-container{
  padding-bottom: 100px;
}

.mvm-map{
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0px 20px 45px rgba(35, 38, 45, 0.12);
}

/* ---- MVM Logo (image) ---- */

.mvm-logo-img{
  display: inline-block;
  line-height: 0;
}

.mvm-logo-img img{
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---- MVM Abstract page hero (без снимка) ---- */

.page-title.mvm-abstract{
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 113, 75, 0.5), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(47, 113, 75, 0.3), transparent 45%),
    linear-gradient(128deg, #070719 0%, #0d1c30 48%, #12301f 100%);
}

.page-title.mvm-abstract:before{
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 16px),
    linear-gradient(180deg, rgba(7, 7, 25, 0.25) 0%, rgba(7, 7, 25, 0.55) 100%);
  opacity: 1;
}

.page-title.mvm-abstract .mvm-shards{
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-title.mvm-abstract .mvm-shards span{
  position: absolute;
  display: block;
  border: 1px solid rgba(194, 233, 214, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015));
  -webkit-box-shadow: 0 0 60px rgba(47, 113, 75, 0.25);
  box-shadow: 0 0 60px rgba(47, 113, 75, 0.25);
}

.page-title.mvm-abstract .mvm-shards span:nth-child(1){
  width: 240px;
  height: 240px;
  right: 11%;
  top: 12%;
  clip-path: polygon(0 0, 100% 12%, 82% 100%, 10% 86%);
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
}

.page-title.mvm-abstract .mvm-shards span:nth-child(2){
  width: 150px;
  height: 150px;
  right: 30%;
  bottom: 14%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: 0.7;
}

.page-title.mvm-abstract .mvm-shards span:nth-child(3){
  width: 130px;
  height: 130px;
  left: 8%;
  top: 30%;
  clip-path: polygon(0 0, 100% 0, 100% 62%, 0 100%);
  opacity: 0.55;
}

.page-title.mvm-abstract .mvm-shards span:nth-child(4){
  width: 220px;
  height: 90px;
  left: 20%;
  bottom: 16%;
  clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
  opacity: 0.45;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(47, 113, 75, 0.35), transparent);
}

/* Desktop centered logo: template style */
.main-header.style-two .header-lower li.logo-box{
  margin: 0px 40px;
  line-height: 0;
  font-size: 0;
}

/* Desktop logo trapezoid container (template white plate) */
.main-header.style-two .header-lower li.logo-box .logo{
  position: relative;
  width: 210px;
  height: auto;
  padding: 4px 0px 4px 0px;
  display: inline-block;
  text-align: center;
  line-height: 0;
  z-index: 1;
  -webkit-transition: transform 400ms ease;
  transition: transform 400ms ease;
}

.main-header.style-two .header-lower li.logo-box .logo:hover{
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

/* green trapezoid plate (template style, site green) */
.main-header.style-two .header-lower li.logo-box .logo:before{
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: calc(100% + 20px);
  background: #2F714B;
  background: linear-gradient(180deg, #2F714B 0%, #245a3c 100%);
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%, 0% 0%);
  z-index: -1;
  -webkit-transition: transform 400ms ease;
  transition: transform 400ms ease;
}

.main-header.style-two .header-lower li.logo-box .logo:hover:before{
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

/* white trapezoid plate */
.main-header.style-two .header-lower li.logo-box .logo:after{
  content: '';
  position: absolute;
  left: -15px;
  top: 0px;
  width: calc(100% + 30px);
  height: calc(100% + 35px);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(35, 38, 45, 0.12);
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%, 0% 0%);
  z-index: -2;
  -webkit-transition: transform 400ms ease;
  transition: transform 400ms ease;
}

.main-header.style-two .header-lower li.logo-box .logo:hover:after{
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.main-header.style-two .header-lower li.logo-box .logo .mvm-logo-img{
  width: 210px;
  height: auto;
  position: relative;
}

/* Sticky header logo */
.main-header.style-two .sticky-header .logo-box .logo .mvm-logo-img{
  height: 110px;
}

/* Mobile brand logo */
.main-header.style-two .header-lower .mobile-brand .mvm-logo-img{
  height: 96px;
}

/* Mobile menu logo */
.mobile-menu .menu-head .nav-logo .mvm-logo-img{
  height: 86px;
}

/* Sidebar logo - big & clean */
.info-sidebar .logo .mvm-logo-img{
  height: 150px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Footer brand logo */
.main-footer .footer-brand .mvm-logo-img{
  height: 64px;
  display: inline-block;
}

/* Header logo - enlarged via transform (no layout change) */
.main-header.style-two .header-lower li.logo-box .logo .mvm-logo-img{
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.main-header.style-two .sticky-header .logo-box .logo .mvm-logo-img{
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* Header CTA button - match bigger logo */
.main-header.style-two .header-lower .btn-box .theme-btn{
  font-size: 14px;
  padding: 17px 36px;
}

/* Vertically center nav buttons with the logo */
.main-header.style-two .header-lower .main-menu .navigation{
  display: flex;
  align-items: center;
}

/* Sticky header: vertically center logo and CTA button with each other */
.main-header.style-two .sticky-header .logo-box{
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: auto;
  display: flex;
  align-items: center;
  padding: 0px;
}

.main-header.style-two .sticky-header .logo-box .logo{
  margin: 0px;
}

.main-header.style-two .sticky-header .logo-box .logo .mvm-logo-img{
  display: block;
}

.main-header.style-two .sticky-header .btn-box{
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  align-items: center;
}

.main-header.style-two .sticky-header .outer-box{
  justify-content: center;
}

/* Sticky header: modern professional look */
.main-header.style-two .sticky-header{
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(35, 38, 45, 0.12);
  border-bottom: 1px solid rgba(35, 38, 45, 0.06);
}

.main-header.style-two .sticky-header .main-menu .navigation > li{
  margin: 0px 22px;
}

.main-header.style-two .sticky-header .main-menu .navigation > li > a{
  color: #23262d;
  padding-right: 0;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}

.main-header.style-two .sticky-header .main-menu .navigation > li > a:hover{
  color: #2F714B;
}

.main-header.style-two .sticky-header .main-menu .navigation > li > a:after{
  position: absolute;
  content: '';
  left: 17px;
  right: 17px;
  bottom: -8px;
  height: 2px;
  background: #2F714B;
  border-radius: 2px;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 400ms ease;
  -moz-transition: transform 400ms ease;
  -ms-transition: transform 400ms ease;
  -o-transition: transform 400ms ease;
  transition: transform 400ms ease;
}

.main-header.style-two .sticky-header .main-menu .navigation > li.current > a:after,
.main-header.style-two .sticky-header .main-menu .navigation > li:hover > a:after{
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sticky header scroll progress bar */
.sticky-header .sticky-progress{
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  height: 3px;
  background: rgba(47, 113, 75, 0.12);
  z-index: 5;
}

.sticky-header .sticky-progress span{
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2F714B, #4d9b70, #2F714B);
  background-size: 200% 100%;
  -webkit-transition: width 120ms linear;
  transition: width 120ms linear;
  -webkit-animation: sticky-shimmer 3s linear infinite;
  animation: sticky-shimmer 3s linear infinite;
}

@-webkit-keyframes sticky-shimmer{
  0%{ background-position: 0% 0%; }
  100%{ background-position: -200% 0%; }
}

@keyframes sticky-shimmer{
  0%{ background-position: 0% 0%; }
  100%{ background-position: -200% 0%; }
}

/* Sticky header CTA button - prominent & interactive */
.main-header.style-two .sticky-header .btn-box .theme-btn{
  font-size: 14px;
  padding: 17px 36px;
  border-radius: 5px;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(47, 113, 75, 0.32);
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header.style-two .sticky-header .btn-box .theme-btn:before{
  background-color: #2F714B;
}

.main-header.style-two .sticky-header .btn-box .theme-btn:after{
  background-color: #ffffff;
}

.main-header.style-two .sticky-header .btn-box .theme-btn:hover{
  color: #2F714B;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(47, 113, 75, 0.45);
}

/* ---- Header polish ---- */

.main-header.style-two .header-lower{
  box-shadow: 0px 4px 18px rgba(35, 38, 45, 0.06);
}

.main-header.style-two .header-lower .main-menu .navigation > li > a{
  letter-spacing: 0.02em;
  padding-right: 0;
}

.main-header.style-two .header-lower .main-menu .navigation > li > a:after{
  position: absolute;
  content: '';
  left: 17px;
  right: 17px;
  bottom: -6px;
  height: 2px;
  background: #2F714B;
  border-radius: 2px;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 400ms ease;
  -moz-transition: transform 400ms ease;
  -ms-transition: transform 400ms ease;
  -o-transition: transform 400ms ease;
  transition: transform 400ms ease;
}

.main-header.style-two .header-lower .main-menu .navigation > li.current > a,
.main-header.style-two .header-lower .main-menu .navigation > li:hover > a{
  color: #2F714B;
}

.main-header.style-two .header-lower .main-menu .navigation > li.current > a:after,
.main-header.style-two .header-lower .main-menu .navigation > li:hover > a:after{
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

/* ===== Sidebar (desktop hamburger menu) - fast, clean & centered ===== */

.xs-sidebar-group .xs-sidebar-widget{
  max-width: 400px;
  background-color: #0e1116;
  background-image: radial-gradient(circle at 50% 15%, rgba(47, 113, 75, 0.3), transparent 62%);
}

.xs-sidebar-group .sidebar-textwidget{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 34px;
}

.info-sidebar .sidebar-info-contents,
.info-sidebar .content-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.xs-sidebar-group .widget-heading{
  padding: 22px 24px;
}

.xs-sidebar-group .close-side-widget{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.xs-sidebar-group .close-side-widget:hover{
  background: #2F714B;
  border-color: #2F714B;
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* logo - bigger & centered */
.info-sidebar .content-inner .logo{
  margin: 0;
  padding: 0;
}

.info-sidebar .content-inner .logo .mvm-logo-img{
  height: auto;
  margin-bottom: 0;
  display: block;
}

.info-sidebar .content-inner .logo .mvm-logo-img img{
  width: 230px;
  height: auto;
}

/* short description */
.info-sidebar .sidebar-about{
  width: 100%;
  margin: 0 0 14px;
}

.info-sidebar .sidebar-about p{
  font-size: 15px;
  line-height: 1.75;
  color: #b9bfc7;
  margin: 0;
}

/* CTA to about section */
.info-sidebar .sidebar-cta{
  width: 100%;
  margin: 0;
}

.info-sidebar .sidebar-cta .theme-btn{
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  color: #ffffff;
}

.info-sidebar .sidebar-cta .theme-btn:before{
  background-color: #2F714B;
}

.info-sidebar .sidebar-cta .theme-btn:after{
  background-color: #ffffff;
}

.info-sidebar .sidebar-cta .theme-btn:hover{
  color: #2F714B;
}

/* contact info */
.info-sidebar .content-inner .contact-info{
  width: 100%;
  margin: 32px 0 0;
}

.info-sidebar .content-inner .contact-info h4{
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a939c;
  font-weight: 700;
  margin: 0 0 18px;
}

.info-sidebar .content-inner .contact-info ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-sidebar .content-inner .contact-info ul li{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #cfd3d9;
  font-size: 15px;
  margin-bottom: 8px;
}

.info-sidebar .content-inner .contact-info ul li i{
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(47, 113, 75, 0.16);
  color: #2F714B;
  font-size: 14px;
}

.info-sidebar .content-inner .contact-info ul li i svg{
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.info-sidebar .content-inner .contact-info ul li a{
  color: #cfd3d9;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}

.info-sidebar .content-inner .contact-info ul li a:hover{
  color: #2F714B;
}

/* facebook only */
.info-sidebar .content-inner .social-box{
  display: flex;
  justify-content: center;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.info-sidebar .content-inner .social-box li{
  margin: 0;
}

.info-sidebar .content-inner .social-box li a{
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.info-sidebar .content-inner .social-box li a:hover{
  background: #2F714B;
  border-color: #2F714B;
  color: #ffffff;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* ===== Language switcher button (static for now) ===== */

.main-header.style-two .header-lower .btn-box,
.main-header.style-two .sticky-header .btn-box{
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2F714B;
  padding: 12px 16px;
  border: 1px solid rgba(47, 113, 75, 0.25);
  border-radius: 5px;
  background: transparent;
  white-space: nowrap;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.lang-btn:hover{
  background: -webkit-linear-gradient(135deg, #2F714B 0%, #245a3c 100%);
  background: linear-gradient(135deg, #2F714B 0%, #245a3c 100%);
  border-color: #2F714B;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(47, 113, 75, 0.35);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.lang-btn.lang-mobile{
  display: none;
}

@media only screen and (max-width: 1199px){
  .lang-btn.lang-mobile{
    display: inline-flex;
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 25;
    padding: 8px 12px;
  }
}

/* ---- MVM Locations section (about page) ---- */
.locations-section{
  position: relative;
  padding: 130px 0px 120px 0px;
  background: #ffffff;
}

.locations-section .locations-intro{
  position: relative;
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  color: #5a5f68;
}

.locations-section .locations-row{
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  grid-template-areas:
    "photo content"
    "photo btn";
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.locations-section .locations-photo{
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: photo;
}

.locations-section .locations-content{
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: content;
}

.locations-section .locations-btn{
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  grid-area: btn;
}

.locations-section .locations-photo .warehouse-photo{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 22px 50px rgba(7, 7, 25, 0.12);
}

.locations-section .locations-photo .warehouse-photo img{
  width: 100%;
  height: auto;
  display: block;
}

.locations-section .locations-content .inner{
  position: relative;
  padding-top: 6px;
}

.locations-section .locations-content .inner h3{
  position: relative;
  font-size: 30px;
  line-height: 40px;
  color: #070719;
  font-weight: 700;
  margin-bottom: 20px;
}

.locations-section .locations-content .inner p{
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: #5a5f68;
  margin-bottom: 18px;
}

.locations-section .locations-btn .theme-btn{
  margin-top: 6px;
}

/* ---- MVM Services page ---- */

/* services grid intro (dark section) */
.service-style-two.services-page-section .services-intro{
  position: relative;
  max-width: 780px;
  margin: -45px auto 60px;
  text-align: center;
  color: #c9cdd6;
  font-size: 17px;
  line-height: 30px;
}

/* process steps */
.mvm-process{
  position: relative;
  padding: 130px 0px 110px 0px;
  background: #ffffff;
}

.mvm-process .process-grid{
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  margin-top: 55px;
}

.mvm-process .process-step{
  position: relative;
  text-align: center;
  padding: 42px 25px 38px 25px;
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mvm-process .process-step:hover{
  border-color: #2F714B;
  -webkit-box-shadow: 0px 20px 45px rgba(47, 113, 75, 0.15);
  box-shadow: 0px 20px 45px rgba(47, 113, 75, 0.15);
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

.mvm-process .process-step .step-icon{
  position: relative;
  width: 88px;
  height: 88px;
  line-height: 88px;
  margin: 0 auto 24px;
  text-align: center;
  border-radius: 50%;
  background: -webkit-linear-gradient(135deg, #2F714B 0%, #245a3c 100%);
  background: linear-gradient(135deg, #2F714B 0%, #245a3c 100%);
  color: #ffffff;
  font-size: 36px;
  -webkit-box-shadow: 0px 12px 30px rgba(47, 113, 75, 0.28);
  box-shadow: 0px 12px 30px rgba(47, 113, 75, 0.28);
}

.mvm-process .process-step .step-num{
  position: absolute;
  top: -8px;
  right: -6px;
  width: 34px;
  height: 34px;
  line-height: 30px;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2F714B;
  background: #ffffff;
  border: 2px solid #2F714B;
  border-radius: 50%;
}

.mvm-process .process-step h3{
  position: relative;
  font-size: 22px;
  line-height: 30px;
  color: #070719;
  margin-bottom: 12px;
}

.mvm-process .process-step p{
  position: relative;
  font-size: 15px;
  line-height: 26px;
  color: #5a5f68;
  margin: 0px;
}

/* features band */
.mvm-features{
  position: relative;
  padding: 110px 0px 100px 0px;
  background: #ffffff;
}

.mvm-features .features-grid{
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.mvm-features .feature-item{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  padding: 26px 24px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mvm-features .feature-item:hover{
  border-color: rgba(47, 113, 75, 0.35);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0px 18px 40px rgba(7, 7, 25, 0.10);
  box-shadow: 0px 18px 40px rgba(7, 7, 25, 0.10);
}

.mvm-features .feature-item .f-icon{
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-radius: 10px;
  color: #2F714B;
  background: rgba(47, 113, 75, 0.10);
  font-size: 26px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.mvm-features .feature-item:hover .f-icon{
  background: #2F714B;
  color: #ffffff;
}

.mvm-features .feature-item h3{
  position: relative;
  font-size: 18px;
  line-height: 26px;
  color: #070719;
  margin: 0px 0px 4px 0px;
}

.mvm-features .feature-item p{
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #5a5f68;
  margin: 0px;
}

/* equal-height service cards on the services page */
.services-page-section .service-block{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.services-page-section .service-block .service-block-two{
  height: 100%;
  width: 100%;
}

.services-page-section .service-block-two .inner-box{
  height: 100%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

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

  .services-page-section .service-block-two .inner-box{
    min-height: 440px;
  }

}

@media only screen and (min-width: 992px){

  .services-page-section .service-block-two .inner-box{
    min-height: 465px;
  }

}

.services-page-section .service-block-two .inner-box .link{
  margin-top: auto;
}

.service-style-two .service-block-two .inner-box .link a.theme-btn{
  color: #ffffff;
  letter-spacing: 0px;
  padding: 13px 34px;
}

.service-style-two .service-block-two .inner-box .link a.theme-btn:hover i{
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/* ---- MVM Contacts page ---- */

.mvm-contacts{
  position: relative;
  padding: 90px 0px 80px 0px;
  background: #ffffff;
}

.mvm-contacts .contacts-intro{
  position: relative;
  max-width: 800px;
  margin: -30px auto 45px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  color: #5a5f68;
}

.mvm-contacts .contacts-grid{
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.contact-loc-card{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 12px;
  padding: 24px 24px 28px 24px;
  -webkit-box-shadow: 0px 14px 34px rgba(7, 7, 25, 0.06);
  box-shadow: 0px 14px 34px rgba(7, 7, 25, 0.06);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.contact-loc-card:hover{
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0px 20px 44px rgba(7, 7, 25, 0.12);
  box-shadow: 0px 20px 44px rgba(7, 7, 25, 0.12);
}

.contact-loc-card .loc-photo{
  position: relative;
  display: block;
  overflow: hidden;
  height: 250px;
  margin: -24px -24px 22px -24px;
  border-radius: 12px 12px 0px 0px;
  background: #eef0f4;
}

.contact-loc-card .loc-photo > img{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}

.contact-loc-card .loc-photo:hover > img{
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.contact-loc-card .loc-photo-overlay{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  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: rgba(255, 255, 255, 0.88);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.contact-loc-card .loc-photo:hover .loc-photo-overlay{
  opacity: 1;
  visibility: visible;
}

.contact-loc-card .loc-photo-overlay img{
  position: relative;
  display: block;
  width: 210px;
  height: auto;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.contact-loc-card .loc-photo:hover .loc-photo-overlay img{
  -webkit-transform: scale(1);
  transform: scale(1);
}

.contact-loc-card .loc-content{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.contact-loc-card .loc-head{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-loc-card .loc-icon{
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 10px;
  color: #2F714B;
  background: rgba(47, 113, 75, 0.10);
  font-size: 22px;
}

.contact-loc-card .loc-head h3{
  position: relative;
  font-size: 19px;
  line-height: 26px;
  color: #070719;
  margin: 0px;
}

.contact-loc-card .loc-list{
  position: relative;
  list-style: none;
  margin: 0px;
  padding: 0px 0px 6px 0px;
  border-bottom: 1px dashed #e2e6ec;
}

.contact-loc-card .loc-list li{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 10px;
  padding: 0px 0px 10px 0px;
  margin-bottom: 10px;
}

.contact-loc-card .loc-list li i{
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16px;
  margin-top: 3px;
  text-align: center;
  color: #2F714B;
  font-size: 15px;
}

.contact-loc-card .loc-list li a,
.contact-loc-card .loc-list li span{
  font-size: 15px;
  line-height: 24px;
  color: #5a5f68;
}

.contact-loc-card .loc-list li a:hover{
  color: #2F714B;
}

.contact-loc-card .loc-list li .c-label{
  color: #969aa2;
}

.contact-loc-card .loc-hours{
  position: relative;
  padding: 14px 0px 18px 0px;
}

.contact-loc-card .loc-hours .hours-title{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #23262d;
  margin-bottom: 10px;
}

.contact-loc-card .loc-hours .hours-title i{
  color: #2F714B;
}

.contact-loc-card .loc-hours .hours-line{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
  line-height: 22px;
  color: #5a5f68;
  padding: 3px 0px;
}

.contact-loc-card .loc-hours .hours-line b{
  font-weight: 600;
  color: #23262d;
}

.contact-loc-card .loc-btn{
  position: relative;
  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;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: auto;
}

.contact-loc-card .loc-btn .theme-btn{
  color: #ffffff;
  letter-spacing: 0px;
  padding: 12px 24px;
}

.contact-loc-card .loc-btn .theme-btn.mvm-book-link{
  padding: 12px 30px;
  -webkit-box-shadow: 0px 12px 26px rgba(47, 113, 75, 0.30);
  box-shadow: 0px 12px 26px rgba(47, 113, 75, 0.30);
}

.contact-loc-card .loc-btn .theme-btn:hover i{
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.contact-loc-card .loc-btn .btn-outline{
  background: transparent;
  color: #2F714B;
  border: 1px solid #2F714B;
}

.contact-loc-card .loc-btn .btn-outline:before{
  background: transparent;
}

.contact-loc-card .loc-btn .btn-outline:hover{
  background: #2F714B;
  color: #ffffff;
}

/* booking CTA */

.mvm-book-cta{
  position: relative;
  padding: 0px 0px 90px 0px;
  background: #ffffff;
}

.mvm-book-cta .book-inner{
  position: relative;
  text-align: center;
  padding: 55px 50px;
  background: -webkit-linear-gradient(135deg, #23262d 0%, #2F714B 100%);
  background: linear-gradient(135deg, #23262d 0%, #2F714B 100%);
  border-radius: 14px;
  overflow: hidden;
}

.mvm-book-cta .book-inner .book-kicker{
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c2e9d6;
  margin-bottom: 10px;
}

.mvm-book-cta .book-inner h2{
  position: relative;
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  margin: 0px 0px 14px 0px;
}

.mvm-book-cta .book-inner p{
  position: relative;
  max-width: 720px;
  margin: 0px auto 24px;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
}

.mvm-book-cta .book-inner .book-actions{
  position: relative;
  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;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mvm-book-cta .book-inner .theme-btn{
  background: #ffffff;
  color: #2F714B;
  letter-spacing: 0px;
  padding: 13px 34px;
  font-size: 15px;
}

.mvm-book-cta .book-inner .theme-btn:before{
  background: transparent;
}

.mvm-book-cta .book-inner .theme-btn:hover{
  background: #23262d;
  color: #ffffff;
}

.mvm-book-cta .book-inner .theme-btn:hover i{
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.mvm-book-cta .book-inner .book-call{
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #c2e9d6;
}

.mvm-book-cta .book-inner .book-call:hover{
  color: #ffffff;
}

/* ==========================================================================
   GDPR cookie consent bar + settings modal
   ========================================================================== */

.mvm-ccbar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid #e8eaf0;
  box-shadow: 0 -8px 28px rgba(7, 7, 25, 0.10);
  font-family: 'Roboto', sans-serif;
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
}

.mvm-ccbar.is-visible{
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mvm-ccbar-inner{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 30px 24px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.mvm-ccbar-main{
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  max-width: 780px;
  padding-right: 30px;
}

.mvm-ccbar-mark{
  position: relative;
  -webkit-flex: 0 0 40px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(47, 113, 75, 0.10);
  color: #2F714B;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 2px 16px 0 0;
}

.mvm-ccbar-mark svg{
  width: 22px;
  height: 22px;
}

.mvm-ccbar-content{
  position: relative;
}

.mvm-ccbar-title{
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #23262d;
  margin: 0 0 6px 0;
}

.mvm-ccbar-content p{
  display: block;
  font-size: 14px;
  line-height: 22px;
  color: #5a6172;
  margin: 0;
}

.mvm-ccbar-content p a{
  color: #2F714B;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mvm-ccbar-content p a:hover{
  color: #1d5237;
}

.mvm-ccbar-note{
  display: block;
  margin-top: 8px !important;
  font-size: 13px !important;
  line-height: 20px !important;
  color: #8a90a1 !important;
}

.mvm-ccbar-actions{
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: 4px;
}

.mvm-ccbar .theme-btn{
  font-size: 13px;
  padding: 12px 26px;
}

.mvm-cc-btn-ghost{
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2F714B;
  background: #ffffff;
  border: 1px solid #2F714B;
  border-radius: 5px;
  padding: 11px 20px;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mvm-cc-btn-ghost:hover{
  background: rgba(47, 113, 75, 0.08);
}

.mvm-cc-link{
  display: inline-block;
  background: none;
  border: 0;
  padding: 8px 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #5a6172;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
}

.mvm-cc-link:hover{
  color: #23262d;
}

/* reopen link in footer */
.main-footer .footer-bottom .mvm-cc-reopen{
  display: inline-block;
  background: none;
  border: 0;
  padding: 4px 0;
  margin-left: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: inherit;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-footer .footer-bottom .mvm-cc-reopen:hover{
  color: #c2e9d6;
}

/* modal */
.mvm-cc-modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 24px;
  font-family: 'Roboto', sans-serif;
}

.mvm-cc-modal.is-open{
  display: -webkit-flex;
  display: flex;
}

.mvm-cc-modal-backdrop{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 25, 0.55);
}

.mvm-cc-modal-card{
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(7, 7, 25, 0.25);
}

.mvm-cc-modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f7;
  color: #5a6172;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mvm-cc-modal-close:hover{
  background: #e2e6ee;
  color: #23262d;
}

.mvm-cc-modal-head{
  position: relative;
  padding: 26px 28px 20px 28px;
  border-bottom: 1px solid #eef0f4;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

.mvm-cc-mark-lg{
  -webkit-flex: 0 0 46px;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  margin: 0 14px 0 0;
}

.mvm-cc-mark-lg svg{
  width: 26px;
  height: 26px;
}

.mvm-cc-modal-head h2{
  position: relative;
  display: block;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
  color: #23262d;
  margin: 0 30px 0 0;
}

.mvm-cc-modal-head p{
  position: relative;
  display: block;
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
  font-size: 13px;
  line-height: 20px;
  color: #8a90a1;
  margin: 6px 0 0 60px;
}

.mvm-cc-modal-body{
  position: relative;
  padding: 18px 28px 8px 28px;
}

.mvm-cc-cat{
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f1f3f7;
}

.mvm-cc-cat-info{
  position: relative;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-right: 24px;
}

.mvm-cc-cat-name{
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #23262d;
  margin-bottom: 3px;
}

.mvm-cc-cat-desc{
  display: block;
  font-size: 13px;
  line-height: 19px;
  color: #8a90a1;
}

/* toggle switch */
.mvm-cc-switch{
  position: relative;
  display: inline-block;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 40px;
  height: 23px;
  margin-top: 2px;
  cursor: pointer;
}

.mvm-cc-switch input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.mvm-cc-switch-track{
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 23px;
  border-radius: 20px;
  background: #dfe3ea;
  -webkit-transition: background 300ms ease;
  transition: background 300ms ease;
}

.mvm-cc-switch-track:before{
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(7, 7, 25, 0.2);
  -webkit-transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
}

.mvm-cc-switch input:checked + .mvm-cc-switch-track{
  background: #2F714B;
}

.mvm-cc-switch input:checked + .mvm-cc-switch-track:before{
  -webkit-transform: translateX(17px);
  transform: translateX(17px);
}

.mvm-cc-switch input:focus-visible + .mvm-cc-switch-track{
  outline: 2px solid #2F714B;
  outline-offset: 2px;
}

.mvm-cc-switch.is-locked{
  cursor: not-allowed;
}

.mvm-cc-switch.is-locked input + .mvm-cc-switch-track{
  background: #2F714B;
  opacity: 0.55;
}

.mvm-cc-switch.is-locked input + .mvm-cc-switch-track:before{
  -webkit-transform: translateX(17px);
  transform: translateX(17px);
}

.mvm-cc-sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.mvm-cc-locked{
  overflow: hidden;
}

.mvm-cc-modal-foot{
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 28px 24px 28px;
}

.mvm-cc-modal-foot .theme-btn{
  font-size: 13px;
  padding: 12px 26px;
}

.mvm-cc-modal-updated{
  margin-left: auto;
  font-size: 12px;
  line-height: 18px;
  color: #a3a8b5;
}

@media only screen and (max-width: 991px){
  .mvm-ccbar-inner{
    padding: 18px 20px 20px 20px;
  }
  .mvm-ccbar-main{
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 16px;
  }
  .mvm-ccbar-actions{
    width: 100%;
  }
}

@media only screen and (max-width: 560px){
  .mvm-ccbar-mark{
    -webkit-flex-basis: 36px;
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }
  .mvm-ccbar-actions .theme-btn,
  .mvm-ccbar-actions .mvm-cc-btn-ghost{
    -webkit-flex: 1 1 45%;
    flex: 1 1 45%;
    text-align: center;
  }
  .mvm-cc-modal{
    padding: 12px;
  }
  .mvm-cc-modal-head{
    padding: 22px 18px 16px 18px;
  }
  .mvm-cc-modal-head p{
    margin-left: 0;
  }
  .mvm-cc-modal-body{
    padding: 14px 18px 6px 18px;
  }
  .mvm-cc-modal-foot{
    padding: 14px 18px 20px 18px;
  }
  .mvm-cc-modal-foot .theme-btn{
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .mvm-cc-modal-updated{
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}



