

@media (max-width: 991px){
.innercontent {
    padding-top: 150px;
}
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=Titillium+Web:wght@400;600;700;900&display=swap');


/* ===================
general css
====================== */

*, *:before, *:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: #757F95;
  line-height: 1.8;
}

a {
  color: #031F4B;
  display: inline-block;
}

a, a:active, a:focus, a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #0049D0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #031F4B;
  margin: 0px;
  font-weight: 600;
  font-family: 'Titillium Web', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.img, img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/* ===================
preloader
====================== */

.preloader {
  background: #fff;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
}

.loader {
  width: 40px;
  height: 40px;
  position: relative;
  top: calc(50% - 30px);
  left: calc(50% - 20px);
}

.loader-box-1, .loader-box-2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FF0000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: loader-bounce 2.0s infinite ease-in-out;
}

.loader-box-2 {
  animation-delay: -1.0s;
}

@keyframes loader-bounce {
  0%, 100% {
    transform: scale(0.0);
  }
  50% {
    transform: scale(1.0);
  }
}

/* ===================
theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background-color: #EFF2F5;
}


/* ===================
site title css
====================== */

.site-heading {
  margin-bottom: 50px;
}

.site-title-tagline {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  color: #FF0000;
  position: relative;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 48px;
  color: #031F4B;
  margin-top: 5px;
  margin-bottom: 0;
}

.site-title span{
  color: #FF0000;
}

.site-heading p {
  font-size: 16px;
}


@media all and (max-width: 767px) {
  .site-title {
    font-size: 35px;
  }
}



/* ===================
margin & padding
====================== */

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
  font-size: 16px;
  color: #ffffff;
  padding: 7px 8px 7px 18px;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  overflow: hidden;
  border: none;
  background: #FF0000;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.theme-btn:hover {
  color: #fff;
  background: #031F4B;
}

.theme-btn i{
  height: 36px;
  width: 36px;
  line-height: 36px;
  color: #FF0000;
  background: #fff;
  margin-left: 12px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.theme-btn:hover i{
  color: #031F4B;
}

.theme-btn2{
  color: #fff;
  background: #031F4B;
}

.theme-btn2 i{
  color: #031F4B;
  background: #fff;
}

.theme-btn2:hover{
  background: #FF0000;
}

.theme-btn2:hover i{
  color: #FF0000;
}



/* ===================
container
====================== */

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1185px;
  }
}




/* ===================
scroll-top css
====================== */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background: #FF0000;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: all .5s ease-in-out;
}

/* ===================
header top css
====================== */

.header-top {
  padding: 10px 0;
  position: relative;
  background: #031F4B;
  z-index: 1;
}

.header-top::before{
  content: "";
  position: absolute;
  background: #FF0000;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 420px;
  height: 101%;
  right: 0;
  top: 0;
  z-index: -1;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-contact ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-top-contact ul li a {
  color: #fff;
  font-weight: 400;
}

.header-top-contact ul li a i {
  margin-right: 10px;
  color: #FF0000;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #FF0000;
  font-size: 16px;
  background: #fff;
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.header-top-social a:hover {
  background: #031F4B;
  color: #fff;
}

.header-top-account a {
  color: #fff;
  margin-right: 20px;
}

.header-top-account a i {
  margin-right: 8px;
}

@media all and (max-width: 1199px) {
  .header-top-account {
    display: none;
  }
  .header-top::before{
    width: 270px;
  }
  .header-top::after{
    width: 260px;
  }
}

@media all and (max-width: 992px) {
  .header-top {
    display: none;
  }
}

/* ===================
nav menu css
====================== */

.main {
  margin-top: 0rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 22px;
    padding: 33px 0 33px 0;
    font-size: 16px;
    font-weight: 600;
    color: #031F4B;
    text-transform: uppercase;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 15px;
    border: none;
    left: -15px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 0 50px 0 rgb(32 32 32 / 15%);
  }

  .navbar .nav-item .dropdown-menu::before{
    content: "\f0d8";
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    top: -50px;
    left: 20px;
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    color: #031F4B;
    position: relative;
    text-transform: uppercase;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: #FF0000;
    padding-left: 25px;
  }

  .navbar .nav-item .nav-link {
    position: relative;
    z-index: 1;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: #FF0000;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 30px;
  }

  .header-nav-search a {
    color: #1F242E;
    font-size: 18px;
    padding: 5px;
  }

  .header-nav-search a:hover {
    color: #FF0000;
  }

  .navbar .header-btn {
    padding-top: 8px;
  }

  .header-phone{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: 18px;
  }

  .header-phone-icon{
    width: 45px;
    height: 45px;
    background: #FF0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
  }

  .header-phone-content span{
    color: #fff;
  }

  .header-phone-content a{
    color: #fff;
  }

}

/*bootstrap menu*/

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
}

.navbar.fixed-top {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.navbar.fixed-top .nav-item .nav-link::before {
  color: #031F4B;
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

button.navbar-toggler {
  font-size: 3.5rem;
  padding: 0;
  margin: 0;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand img {
  width: 160px;
}

/* dropdown toggler */

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: 1.5px;
  font-family: 'Font Awesome 5 Pro';
  content: "\f067";
  font-weight: 600;
  border: none;
  font-size: 11px;
}

.dropdown-toggle:hover::after {
  content: "\f068";
}

/* mobile menu */

.mobile-menu-right {
  display: flex;
  align-items: center;
}

@media all and (max-width: 1199px) {
  .navbar .header-btn {
    display: none;
  }
  .navbar .header-btn {
    display: none;
  }
  .header-phone {
    display: none;
  }
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    position: fixed;
    z-index:32000 !important;
  }

  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 180px;
  }

  .navbar-collapse {
     max-height: 390px; 
   
    overflow-y: auto;
    padding: 0 20px;
    background-color: #fff;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: #031F4B;
    font-weight: 700;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .nav-link:hover {
    color: #FF0000 !important;
  }

  .navbar-toggler{
    border: none;
  }

  .navbar-toggler-icon {
    font-size: 32px;
    color: #031F4B;
    font-weight: 500;
    padding-right: 10px;
    margin-bottom: 10px;
    background: transparent;
  }

  .navbar .dropdown-menu {
    border-radius: 10px;
  }
  .navbar.fixed-top .navbar-toggler-icon {
    color: #031F4B;
  }

  .header-nav-right {
    display: none;
  }
}






/* ===================
feature css 
====================== */

.feature-item{
  padding: 20px 20px 20px 20px;
  background: #031F4B;
  position: relative;
  border-radius: 14px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.feature-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  position: relative;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.feature-icon::before{
  content: "";
  position: absolute;
  transform: skew(8deg);
  background: #FF0000;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  z-index: -1;
}

.feature-icon i{
  font-size: 40px;
  color: #fff;
}

.feature-content p{
  margin-top: 10px;
  color: #fff;
}

.feature-content h4 a{
  color: #fff;
  font-size: 25px;
}

.feature-item.active,
.feature-item:hover{
  background: #FF0000;
}

.feature-item.active .feature-icon::before,
.feature-item:hover .feature-icon::before{
  background: #031F4B;
}

/* ===================
auth css 
====================== */

.login-form {
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.login-form .login-header {
  margin-bottom: 50px;
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: #FF0000;
  margin-bottom: 5px;
  font-weight: 600;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 40px;
}

.login-form .login-footer a {
  color: #FF0000;
  transition: .5s;
}

.login-form .login-footer a:hover {
  color: #031F4B;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  color: #031F4B;
  margin-bottom: 5px;
}

.login-form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 18px;
  box-shadow: none;
  transition: .5s;
}

.login-form .form-group .form-control:focus {
  border-color: #FF0000;
}

.login-form .form-check-input {
  box-shadow: none;
}

.login-form .forgot-pass {
  color: #FF0000;
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color: #031F4B;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: #FF0000;
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: #FF0000;
}

.form-check-input:checked {
  background-color: #FF0000;
  border-color: #FF0000;
}

@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}

/* ===================
contact us css 
====================== */

.contact-wrapper {
  padding: 50px 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  position: relative;
}

.contact-form {
  padding: 0 40px;
}

.contact-form-header {
  margin-bottom: 30px;
  color: #031F4B;
}

.contact-form-header h2 {
  color: #031F4B;
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.contact-form .form-group .form-control:focus {
  border-color: #FF0000;
}

.contact-map{
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.contact-info-icon i {
  font-size: 25px;
  color: #fff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 10px;
  text-align: center;
  background: #FF0000;
}

.contact-info h5 {
  color: #031F4B;
  margin-bottom: 5px;
}

.contact-info p {
  color: #031F4B;
}

@media all and (max-width: 991px) {

  .contact-wrapper{
    padding: 50px 20px;
  }

  .contact-form {
    padding: 0px;
  }

  .contact-info{
    padding: 0px;
    margin-top: 50px;
  }
}




/* ===================
footer css 
====================== */

.footer-area {
  background: #031F4B;
  background-image: url(../img/shape/01.png);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 170px;
  margin-bottom: 20px;
}

.copyright {
  padding: 20px 0;
  background: #00183D;
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: #f5faff;
  transition: all .5s ease-in-out;
}

.copyright .footer-menu li a:hover {
  color: #FF0000;
}

.copyright .copyright-text {
  color: #f5faff;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #FF0000;
  font-weight: 500;
}

.footer-widget-title {
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 15px;
  height: 3px;
  background-color: #FF0000;
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 35px;
  height: 3px;
  background-color: #FF0000;
  bottom: 0;
  left: 20px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-list li a {
  color: #fff;
  transition: all .5s ease-in-out;
}

.footer-list li a i{
  margin-right: 5px;
  color: #FF0000;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: #FF0000;
}

.footer-widget-box p {
  color: #fff;
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer-social li a i {
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: #FF0000;
  color: #fff;
  transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
  background: #fff;
  color: #FF0000;
}

.footer-newsletter .subscribe-form .form-control {
  border: 2px solid #e8e8e8;
  height: 55px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  box-shadow: none;
  background-color: transparent;
}

.footer-newsletter .subscribe-form .form-control::placeholder {
  color: #F2F3F5;
  opacity: 1;
}

.footer-newsletter .subscribe-form .theme-btn {
  margin-top: 20px;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #f5faff;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-contact li a {
  color: #f5faff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 12px;
  height: 30px;
  font-size: 18px;
  margin-right: 15px;
  border-radius: 5px;
  line-height: 31px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #FF0000;
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }
  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }
}


.mainproduct h1{font-family: 'Familjen Grotesk', sans-serif;text-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;font-size:60px;color:#fff;text-transform:capitalize;font-weight:bold; }
.post-slide6{ border:3px solid #FFFFFF !important; box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;}
.post-slide6 .post-img{position:relative;overflow:hidden;}
.post-slide6 .post-img:before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;background:rgba(0,0,0,0);transition:all .4s linear 0s}
.post-slide6:hover .post-img:before{background:rgba(0,0,0,.6)}
.post-slide6 .post-img img{width:100%;height:250px;}

.post-slide6 .post-info{width:90%;position:absolute;bottom:-100%;left:5%;background:#22A058;text-align:center;line-height:26px;padding:15px;transition:bottom .4s ease-in-out 0s;}
.post-slide6:hover .post-info{bottom:0}
.post-slide6 .post-info .btn{color:#fff;background:#00923F;}
.post-slide6 .category{padding:0;margin:0;list-style:none}
.post-slide6 .category li,.post-slide6 .post-date{display:inline-block;font-size:16px;color:#fff;text-transform:capitalize}
.post-slide6 .category li:after{content:" /"}
.post-slide6 .category li:last-child:after{content:""}
.post-slide6 .category li a{color:#fff;transition:all .4s linear; font-size:12px;}
.post-slide6 .category li a:hover{color:#f0f0f0;text-decoration:none}