/* ----------------------------------------------------
-------------------------------------------------------
Template Name: 
Author: 
URL: http:
Version: 1.1;
------------------------------------------------------- */

/*--------------------------------
 All CSS Table of content 
 ---------------------------------
1. Template default styles
2. Button style
3. Area heading style
4. Header area style
5. Slider area style
6. Breadcrumb area style
9. Service area style
21. Contact area style
22. Footer area style

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

/* -----------------------------
1. Template default styles
--------------------------------*/

/* ------------
Google Fonts:
1. Montserrat
2. Roboto
----------------- */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,700|Poppins:300,500,700');

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2e2e2e;
   font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
  font-weight: 500;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none
}

p {
  color: #626262;
  margin-bottom: 15px;
}

hr {
  margin: 0;
  padding: 0px;
  border-bottom: 1px solid #eee;
  border-top: 0px;
}

label {
  color: #626262;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}
::-moz-selection {
  background: #b32b2b;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #b32b2b;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #555555;
  font-size: 14px;
  text-transform: capitalize;
}

*::placeholder {
  color: #555555;
  font-size: 14px;
  text-transform: capitalize;
}

a,
button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a,
button,
img,
input,
span,
::before,
::after {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s; 
}

*:focus {
  outline: none; 
}

a {
  transition: all .3s ease-in-out 0s;
}
a:focus {
  color: inherit;
  outline: none;
  text-decoration: none; 
}
a:hover {
  color: #888888;
  text-decoration: none; 
}

button,
input[type="submit"] {
  cursor: pointer; 
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0; 
}
@media (min-width: 1200px) {
  .container {
      max-width: 1200px;
  }
}
.theme-section {
  padding: 100px 0;
  overflow: hidden;
}
.theme-section-2 {
  padding: 80px 0;
  overflow: hidden;
}
.theme-section-3 {
  padding: 60px 0;
  overflow: hidden;
}
.white-bg {
  background: #ffffff;
}
.gray-bg {
  background: #f6f6f6;
}
.dark-bg {
  background: #242526;
}
.template-bg {
  background: #b32b2b !important;
}
.template-gradient-bg {
  background: rgba(0, 0, 0, 0) linear-gradient(to right, #b32b2b 0%, #00e095 100%) repeat scroll 0 0 !important;
}

/* -----------------------------
2. Button style
-------------------------------- */

.button {
  font-family: "Dosis",sans-serif;
  background: #b32b2b none repeat scroll 0 0;
  border: none;
  box-shadow: none;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  height: 45px;
  line-height: 43px;
  padding: 0 30px;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
  z-index: 1;
     -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -o-border-radius: 35px;
    -ms-border-radius: 35px;
    border-radius: 35px;
  transition: all 0.4s ease 0s;
}
.button:focus {
  color: #fff;
}
.button+.button {
  margin-left: 15px;
}

.btn-top-style,
.btn-left-style {
  position: relative;
}

.btn-top-style:hover {
  color: #212529;
}
.btn-top-style::before {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease 0s;
}
.btn-top-style:hover::before {
  opacity: 1;
  height: 100%;
}

.btn-left-style:hover {
  color: #212529;
}
.btn-left-style::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease 0s;
}
.btn-left-style:hover::before {
  opacity: 1;
  width: 100%;
}

.btn-white {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  overflow: hidden;
  transition: all 0.4s ease 0s;
}
.btn-white:hover {
  border-bottom: 1px solid #b32b2b;
  border-left: 1px solid #b32b2b;
  border-right: 1px solid #b32b2b;
}
button.btn-white,
a.btn-white {
  border-top: 1px solid #b32b2b;
} 

.button-group {
  margin-top: 30px;
}
.contact-box {
  background: #b32b2b;
  padding: 25px 0;
  margin: 50px 0 0;
  box-shadow: 0 0 5px #b5b4b4;
  text-align: center;
}
.contact-box i {
  font-size: 48px;
  color: #fff;
}
.contact-box h3 a {
  color: #fff;
  margin-top: 20px;
}
.contact-box h3 a:hover {
  color: #fff;
  text-decoration: underline ;
}

footer {
  background: #b32b2b;
  text-align: center;
  padding: 80px 0;
}
footer h2 {
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin: 0;
  text-transform: uppercase;
}
footer p {
  font-size: 21px;
  color: white;
  margin: 1em 0 0;
}
/* -----------------------------
4. Header area style
-------------------------------- */

.sticky-header {
  position: absolute;
  z-index: 99;
  width: 100%;
  transition: all .5s ease-in-out 0s;
  background: rgb(0 48 73 / 91%);
}
.is_sticky.sticky-header {
  background: #b32b2b;
  position: fixed;
  box-shadow: 0 1px 3px rgba(50, 50, 50, 0.2);
}

.navbar {
  padding: 0; 
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all .5s ease-in-out 0s;
  width: 100%;
}

.navbar-brand {
  color: #232323;
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  text-fill-color: transparent;
  background-clip: text;
  margin-right: 0;
}
.is_sticky.header-area .navbar-brand {
    color: #232323;
}
.video-bg .navbar-brand,
.color .navbar-brand {
  color: #fff;
}
.video-bg .navbar-brand:hover {
  color: #fff;
}
.color .navbar-light .navbar-brand:focus,
.color .navbar-light .navbar-brand:hover {
  color: #fff;
}
.dot-color {
    color: #b32b2b;
}
.color .dot-color {
    color: #232323;
}
.is_sticky.color .dot-color {
    color: #b32b2b;
}

.main-menu {
  width: 100%;
}
.main-menu li {
  position: relative;
  transition: all .5s ease-in-out 0s;
}
.main-menu > li {
  padding: 0;
  cursor: pointer;
  transition: all .5s ease-in-out 0s;
}
.main-menu > li + li {
  margin-left: 30px;
}
.main-menu li a {
  color: #b32b2b;
  display: block;
  font-size: 15px;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 35px 0;
  position: relative;
  transition: all .5s ease 0s;
}
.is_sticky .main-menu > li > a {
  padding: 25px 0;
}
.video-bg .main-menu > li > a,
.color .main-menu > li > a {
  color: #fff;
}
.video-bg .main-menu > li:hover > a {
  color: #b32b2b;
}
.is_sticky.video-bg .main-menu > li > a,
.is_sticky.color .main-menu > li > a {
  color: #232323;
}
.is_sticky.video-bg .main-menu > li:hover > a {
  color: #b32b2b;
}
.is_sticky .main-menu > li a::before {
  background: #b32b2b;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  opacity: 0;
  z-index: 9;
  transition: all 0.3s ease 0s;
}
.is_sticky .main-menu > li a:hover::before,
.is_sticky .main-menu > li a.active::before {
  opacity: 1;
  width: 100%;
}
.main-menu > li > a i {
  font-size: 14px;
  padding-left: 5px;
  position: relative;
  top: 2px;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link {
  color: #232323;
}
.color .navbar-light .navbar-nav .nav-link {
  color: #fff;
}
.is_sticky.color .navbar-light .navbar-nav .nav-link {
  color: #232323;
}
.video-bg .navbar-light .main-menu > li > .nav-link {
  color: #fff;
}
.is_sticky.video-bg .navbar-light .main-menu > li > .nav-link {
  color: #232323;
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.is_sticky.video-bg .navbar-light .navbar-nav .nav-link.active,
.is_sticky.video-bg .navbar-light .navbar-nav li a:hover,
.navbar-light .navbar-nav li:hover .nav-link,
.main-menu li:hover > a {
  color: #b32b2b;
}
.video-bg .navbar-light .navbar-nav .nav-link.active,
.video-bg .navbar-light .navbar-nav .nav-link:hover,
.video-bg .navbar-light .navbar-nav > li:hover > a {
  color: #ffffff;
}
.color .navbar-light .navbar-nav .nav-link.active,
.color .navbar-light .navbar-nav li.active .nav-link
.color .navbar-light .navbar-nav .nav-link.active,
.color .navbar-light .navbar-nav li:hover .nav-link, 
.color .main-menu > li:hover > a {
  color: #ffffff;
}
.is_sticky.color .navbar-light .navbar-nav .nav-link.active {
  color: #ffffff;
}
.is_sticky.color .navbar-light .navbar-nav li:hover .nav-link,
.is_sticky.color .main-menu > li:hover > a {
  color: #ffffff;
}
.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.nav-pills .nav-link.active {
  background-color: transparent;
}
.nav-link {
  padding: 0;
}

/*Sub menu*/

.main-menu li ul {
  background: #ffffff;
  border-top: 2px solid #b32b2b;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  position: absolute;
  left: 0;
  top: 100%;
  width: 200px;
  opacity: 0;
  transform: scale(0.9);
  visibility: hidden;
  z-index: 999;
  transition: all 0.2s linear 0s;
}
.main-menu li ul.dropdown-right {
  left: auto;
  right: 0;
}
.main-menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.main-menu li ul li a {
  color: #232323;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  display: block;
  clear: both;
  white-space: nowrap;
}

/*Sub sub menu*/

.main-menu li ul li ul {
  left: auto;
  right: 100%;
  top: -2px;
  transition: all 0.2s linear 0s;
}
.main-menu li li a i {
  font-size: 14px;
  margin-right: 5px;
}
/*Preloader*/
#loader {
  background-color:#b32b2b;
  height:100%;
  width:100%;
  position:fixed;z-index:9999;
  margin-top:0;top:0
  }
  #loading-center {
  width:100%;height:100%;
  position:relative
  }
  #loading-center-absolute {
  position:absolute;left:50%;
  top:50%;height:50px;
  width:150px;
  margin-top:-25px;
  margin-left:-75px
  }
  .object {
    width:8px;
    height:50px;
    margin-right:5px;
    background-color:#FFF;
    -webkit-animation:animate 1s infinite;
    animation:animate 1s infinite;
    float:left
  }
  .object:last-child {
    margin-right:0
  }
    .object:nth-child(10) {
    -webkit-animation-delay:.9s;
    animation-delay:.9s
  }
  .object:nth-child(9){-webkit-animation-delay:.8s;animation-delay:.8s}
  .object:nth-child(8){-webkit-animation-delay:.7s;animation-delay:.7s}
  .object:nth-child(7){-webkit-animation-delay:.6s;animation-delay:.6s}
  .object:nth-child(6){-webkit-animation-delay:.5s;animation-delay:.5s}
  .object:nth-child(5){-webkit-animation-delay:.4s;animation-delay:.4s}
  .object:nth-child(4){-webkit-animation-delay:.3s;animation-delay:.3s}
  .object:nth-child(3){-webkit-animation-delay:.2s;animation-delay:.2s}
  .object:nth-child(2){-webkit-animation-delay:.1s;animation-delay:.1s}
  @-webkit-keyframes animate{50%{-ms-transform:scaleY(0);
  -webkit-transform:scaleY(0);
  transform:scaleY(0)}}
  @keyframes animate{50%{-ms-transform:scaleY(0);
  -webkit-transform:scaleY(0);transform:scaleY(0)}}



/* -----------------------------
5. Slider area style
-------------------------------- */
.slider-area {
  overflow: hidden;
  visibility: visible;
  background-image: url(images/page-title.png);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slider-content-wrapper {
  position: relative;
}
.slider-content {
  display: inline-block;
  z-index: 2;
  padding: 50px;
  margin: 200px 0 100px;
  background: rgb(0 48 73 / 81%);
  border-radius: 20px;
  text-align: center;
}
.slider-content h1 {
  font-family: 'Open Sans', sans-serif;
  color: #232323;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 0 0 10px;
  text-transform: unset;
}
.cd-words-wrapper b {
  color: #fff;
  font-weight: 600;
}
.slider-content h1,
.slider-content h1,
.slider-content h1 {
  color: #fff;
}
.slider-content .animated-mobile-heading {
  display: none;
}
.slider-content h1 .cd-words-wrapper,
.slider-content h1 .coloring {
  color: #b32b2b;
}
.slider-content h1 .cd-words-wrapper, .slider-content h1 .coloring {
  color: #fff;
}
.slider-content p {
  color: #666;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.slider-content p.greetings {
  color: #232323;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}
.video-area .slider-content p,
.color-bg .slider-content p,
.color .slider-content p {
  color: #fff;
  font-size: 24px;
}

/*Scroll Button*/
.scroll-btn {
  position: absolute;
  bottom: 120px;
  left: 682px;
  transform: translateX(-50%);
  min-height: 55px;
  min-width: 30px;
  border: 2px solid #b32b2b;
  border-radius: 30px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: normal;
  z-index: 9;
  cursor: pointer;
  overflow: hidden;
  display: none;
}
.color.scroll-btn {
  border: 2px solid #fff;
}
.scroll-btn-wrapper {
  height: 55px;
  position: relative;
}
.scroll-ball {
  animation: 3s ease 0s normal none infinite running musa-slider-anim;
  background: #b32b2b none repeat scroll 0 0;
  border-radius: 100%;
  display: inline-block;
  height: 8px;
  left: 50%;
  position: absolute;
  text-align: center;
  text-indent: -9999px;
  top: 0;
  transform: translateX(-50%);
  width: 8px;
}
.color .scroll-ball {
  background: #fff none repeat scroll 0 0;
}

/* Scrolling animation */
@keyframes musa-slider-anim {
  0% {
      top: 10px;
      opacity: 1;
  }
  50% {
      top: 40px;
      opacity: 1;
  }
  100% {
      top: 10px;
      opacity: 1;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
    .slider-content {
        transform: translateX(150px);
    }
}
/* -----------------------------
8. About area style
-------------------------------- */

.social-menu li {
  float: left;
}
.social-menu li+li {
  margin-left: 10px;
}
.social-menu li a {
  display: block;
  background: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 16px;
  color: #051429;
  border: 2px solid #fff;
  transition: all 0.3s ease 0s;
}
.social-menu li a i {
  transition: all 0.3s ease 0s;
}
.social-menu li a:hover {
  color: #fff;
  border: 2px solid #ffffff;
  background: #b32b2b;
}

@media (max-width: 991px) {
    .color .navbar-light .navbar-toggler {
        display: none;
    }
}
@media (max-width: 767px) {
    .navbar {
        top: -23px;
    }
    .is_sticky.sticky-header{
    height: 150px;
   }
}
/* -----------------------------
9. Service area style
-------------------------------- */

.single-service {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  padding: 40px;
  text-align: center;
  transition: all 0.5s ease 0s;
}
.col-lg-4:nth-child(n+4) .single-service {
  margin-top: 30px;
}
.single-service:hover {
  transform: translateY(-10px);
}
.service-header {
  margin-bottom: 10px;
}
.service-header i {
  color: #b32b2b;
  display: inline-block;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 20px;
  transition: 1s;
}
.single-service:hover i {
  transform: translateY(-10px);
}
.service-header h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.single-service p {
  font-size: 13px;
  margin: 0;
} 


/*---------------------------
22. Footer area style
---------------------------*/

.theme-footer-section {
  background: #b32b2b;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.copy-right-info p {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
  line-height: 3.1;
}
.copy-right-info a {
  color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.quick-link {
  overflow: hidden;
  text-align: center;
  line-height: 3;
}
.quick-link li {
  display: inline;
}
.quick-link li + li {
  margin-left: 15px;
}
.quick-link li a {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
}
.quick-link li a:hover {
  color: #b32b2b;
}

.footer-single-widget .social-menu {
  float: right;
  position: relative;
  top: 1px;
}

/*scroll top to button style*/

.to-top-btn {
  background: #232323 none repeat scroll 0 0;
  border-radius: 2px;
  bottom: 25px;
  color: #ffffff;
  font-size: 20px;
  height: 30px;
  line-height: 25px;
  opacity: 0;
  position: fixed;
  right: 25px;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 30px;
}
.to-top-btn:focus {
  color: #fff;
}
.to-top-btn.to-top-show {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
  z-index: 9;
  transition: all 0.3s ease 0s;
}
.to-top-btn.to-top-show:hover {
  color: #fff;
  background: #b32b2b;
}


/*---------------------------------------
23. Preview area
---------------------------------------*/
.preview-header-top-area {
    height: 100vh;
}
.preview-page-area .row:nth-child(n+2) {
    margin-top: 70px;
}
.other-pages .col-lg-3:nth-of-type(n+5) .preview {
    margin-top: 30px;
}
.preview {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s ease 0s;
}
.preview-heading {
    font-size: 32px;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.preview-image {
    border: 1px solid #e5e5e5;
    position: relative;
    transition: all 0.5s ease 0s;
}
.preview-image img {
    max-width: 100%; 
    height: auto;
    transition: all 0.5s ease 0s;
}
.cd-headline {
  line-height: normal;
}
.preview-image::before {
    background: rgb(0 48 73 / 72%);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
}
.preview:hover .preview-image::before {
    opacity: 1;
    visibility: visible;
}
.coming-soon .image-scroll::before {
    background: rgba(255, 255, 255, 0.95) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    transition: all 0.4s ease 0s;
}
.preview-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.preview:hover .preview-btn {
    opacity: 1;
}
.preview-image .image-scroll {
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 300px;
}
.preview-content {
    transition: all 0.5s ease 0s;
}
.preview-content h4 {
    color: #2d3e50;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}
.preview-content h4 a {
    padding: 18px 0;
}
.preview-content h4 a:hover {
    color: #b32b2b;
}
.preview-content h4 span {
  float: right;
    background: #4bb32b;
    padding: 3px 6px;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
}
.preview-footer-area {
    padding: 25px;
    border-top: 1px solid #e5e5e5;
}

.preview-page-area {
    padding: 100px 0;
}
.preview-page-area .preview {
    margin-top: 30px;
}
.single-service {
    padding: 30px 0;
    background: #fff;
    border-radius: 4px;
}
.service-header {
    margin-bottom: 0;
}
.service-header i {
    margin-bottom: 15px;
}

@media (min-width: 992px) and (max-width: 1169px) {

.service-header>h3 {
    font-size: 16px;
    line-height: 24px;
}
.preview-page-area {
    padding: 80px 0;
}
.preview-page-area .row:nth-child(n+2) {
    margin-top: 50px;
}
.preview-heading {
    font-size: 28px;
    margin-bottom: 20px;
}

}

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

.col-md-6:nth-of-type(n+3) .preview {
    margin-top: 30px;
}
.preview-page-area {
    padding: 70px 0;
}
.preview-page-area .row:nth-child(n+2) {
    margin-top: 50px;
}
.preview-heading {
    font-size: 26px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {

.col-md-6:nth-of-type(n+2) .preview {
    margin-top: 30px;
}
.col-md-4.col-sm-6:nth-child(n+2) .single-service {
    margin-top: 50px;
}
.preview-content h4 {
    font-size: 15px;
}
.preview-page-area {
    padding: 60px 0;
}
.preview-page-area .row:nth-child(n+2) {
    margin-top: 50px;
}
.preview-heading {
    font-size: 24px;
    margin-bottom: 20px;
 }
.bg-w {
  background-color: #000000 !important;
}

 .m-t-30 {
  margin-top: 30px !important;
}

.m-b-40 {
    margin-bottom: 40px !important;
}