
/* ===================
fonts
====================== */

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i"&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

/* ===================
general css
====================== */

*, *:before, *:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
/*  font-family: 'Roboto', sans-serif;*/
font-family: roboto, sans-serif !important;
  font-style: normal;
  font-size: 15px;
  font-weight: normal;
  color: #000;
  line-height: 24px;
  
}
p{ margin-bottom: 10px !important; }
a {
  color: #14212B;
  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 {
  margin: 0px;
  font-family: "roboto", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 10px;
}

.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;
}

.middle {
    justify-content: center;
    display: flex;
    align-items: center;
}

.parallax {
    background-position: center;
    text-align: center;
    background-attachment: fixed !important;
    position: relative;
    background-repeat: no-repeat!important;
    z-index: 1 !important;
     padding-bottom: 70px; 
    background-size: cover !important;
}

.parallax-height {
    min-height: 384px;
}
.parallax h2{ color: #fff; }
.parallax h4 {color: #fff;}
.parallax p{color: #fff;}
 

.parallax:after {
    content: "";
    position: absolute;
    top: 0;
    background-color: #040302de;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: -1;

}

.default-area{ padding: 50px 0; }



/*.active {
    padding-bottom: 8px;
    border-bottom: 2px solid #0d5c85;
  
}*/

/* ===================
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: #728202;
  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;
}

.text-white {
  color: #fff;
}


.bg-gray {
  background: #f5f5f5;
}

.bg-blue {
  background: #1b3f78;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* ===================
breadcrumb css
====================== */

.breadcrumb {padding: 100px 10px;}
.breadcrumb .title-wrap h1{ color: #fff;  }
.breadcrumb .title-wrap h1{ color: #fff;  }
.breadcrumb .title-wrap a{ color: #f00;  }
.breadcrumbs{margin-top: 20px;}
/* ===================
header top css
====================== */

.header-top {
  padding: 3px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  z-index: 2;
  background: #647500;
}

.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-size: 14px;
    font-weight: 500;
    float: left;
    letter-spacing: 1px;
}

.header-top-contact ul li a i {
  margin-right: 6px;
  color: #fff;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-social a {  
  line-height: 22px;
  color: #fc0000;
  font-size: 12px;
  text-align: center;
  margin-left: 5px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
  height: 22px;
  width: 22px;
  background: #fff;
/*  float: right;*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-top-social a i.fa-facebook-f{color: #3a50ca;}
.header-top-social a i.fa-instagram{color: #fc0000;}
.header-top-social a i.fa-linkedin-in{color: #0a66c2;}

.header-top-social a.facebook:hover {background: #3a50ca;}
.header-top-social a:hover i.fa-facebook-f{color: #fff;}

.header-top-social a.instagram:hover {background: #fc0000;}
.header-top-social a:hover i.fa-instagram{color: #fff;}

.header-top-social a.linkedin:hover {background: #0a66c2;}
.header-top-social a:hover i.fa-linkedin-in{color: #fff;}

.header-top-account a {
  color: #fff;
  margin-right: 20px;

}

.header-top-account a i {
  margin-right: 8px;
}

/* ===================
  NAVbar css
====================== */
.navbar {background: #3e3e3e;padding: 0;}
.navbar .mobile-menu-right .navbar-toggler span{color: #fff;}
.primary-nav-wrap{justify-content: center;}
/*.primary-nav-wrap .navbar-nav .nav-item{margin-left: 18px;}*/
.primary-nav-wrap .navbar-nav .nav-link {
  color: #fff;
    padding: 5px 30px;
    font-family: "Open Sans",sans-serif;
    font-size: 14px;
    font-weight: 600 !important;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}


.primary-nav-wrap ul.sub-menu li{}
.primary-nav-wrap ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: flex-start;
    align-items: flex-start
}

.primary-nav-wrap ul li {
    list-style: outside none none
}

.primary-nav-wrap ul li + li {
    /* margin-left: 24px; */
}

.header-sticky.sticky .primary-nav-wrap ul li a {
    height: 70px;
    line-height: 70px
}

.header-sticky.sticky .primary-nav-wrap ul li ul.sub-menu li a {
    height: 36px;
    line-height: 34px;
    padding:25px;
}
.primary-nav-wrap ul li a {
   /* display: block;*/
    /*height: 85px;
    line-height: 85px;*/
    transition: all .3s ease 0s
}
.primary-nav-wrap ul li a {
    color: #000;
    padding:5px 5px;
    font-family: "Open Sans",sans-serif;
    font-size: 15px;
    font-weight: 600 !important;
    position: relative;
    text-decoration: none
}
.primary-nav-wrap .sub-menu > li > a:hover {
    border: none !important;
    color: #2c688d !important;
}

.primary-nav-wrap ul li .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 0px;
    border: none;
    border-top: 4px solid #849700;
    border-radius: 0px;
    width: auto;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  }
.dropdown-menu.show{display: block !important;}

 .primary-nav-wrap ul li .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }

.primary-nav-wrap ul li .dropdown-menu li.open:hover .dropdown-menu{display: block !important; top: 0px}


 .primary-nav-wrap ul li .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

 .primary-nav-wrap ul li .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    color: #171B2A;
    position: relative;
    text-transform: uppercase;
    transition: all .5s ease-in-out;
  }
.primary-nav-wrap .navbar-nav .dropright  .nav-link.dropdown-toggle::before,
 .primary-nav-wrap ul li .dropdown-menu .dropdown-item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 0px;
    height: 2px;
    opacity: 0;
    background: #fff;
    transition: all .7s ease-in-out;
  }
.primary-nav-wrap .navbar-nav .dropright  .nav-link.dropdown-toggle:hover::before,
 .primary-nav-wrap ul li .dropdown-menu .dropdown-item:hover::before{
    width: 10px;
    opacity: 1;
  }
.primary-nav-wrap .navbar-nav .dropright  .nav-link.dropdown-toggle{color: #000;padding-left: 18px;}

.primary-nav-wrap .navbar-nav .dropright  .nav-link.dropdown-toggle:hover,
 .primary-nav-wrap ul li .dropdown-menu .dropdown-item:hover {
    background: #849700 ;
    color: #fff;
    padding-left: 20px;
  }

 .primary-nav-wrap ul li .nav-link {
    position: relative;
    z-index: 1;
  }

 .primary-nav-wrap ul li .nav-link.active,
 .primary-nav-wrap ul li:hover .nav-link {
   /* background: #849700 ;
    color: #fff;*/
  }

.primary-nav-wrap ul li a:hover,
.primary-nav-wrap ul li a.active {
    /* padding-bottom: 8px; border-bottom: 2px solid #b92e32;*/
    background-color: #647500;  color: #fff !important;
}
.primary-nav-wrap .navbar-nav .dropright  .nav-link.dropdown-toggle:hover .dropdown-menu,
 .primary-nav-wrap ul li: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%;
  }*/

/*  .navbar-nav .dropdown-menu{top: 0 !important}*/


/* Header menu Sticky*/

.header-menu-wrap .primary-nav-wrap .sub-menu > li > a, 
.header-area.header-sticky.sticky .primary-nav-wrap ul li a, 
.header-menu-wrap .primary-nav-wrap ul li a {
    visibility: inherit;
    transition: all .4s ease 0s
}

.header-area.header-sticky.sticky .primary-nav-wrap .sub-menu > li > a {
    color: #444
}

.header-area.header-sticky.sticky .primary-nav-wrap .sub-menu > li > a:hover {
    color: #152e4d
}

/* sub menu */
.primary-nav-wrap ul.sub-menu {
    display: block;
    padding: 15px 0
}
.primary-nav-wrap .sub-menu {
    background: #fff none repeat scroll 0 0;
    box-shadow: -1px 5px 6px 1px rgba(0,0,0,.2);
    height: auto;
    left: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    transition: all .4s ease 0s;
    visibility: hidden;
    width: 345px;
    z-index: 550
}

.primary-nav-wrap ul.sub-menu li {
    display: block;
    border-bottom: 1px solid #e7e7e9;
}

.primary-nav-wrap .sub-menu > li {
    display: block;
    margin: 0;
    width: 100%
}
.primary-nav-wrap .sub-menu > li:hover > a {
       background-color: transparent !important;
        color: #152e4d
}

.primary-nav-wrap ul {
    align-items: flex-start;
    display: flex
}

.primary-nav-wrap .sub-menu > li > a {
    color: #444;
    font-size: 14px;
    font-weight: 600;
    height: 36px;
    line-height: 34px;
    padding: 0 25px;
    text-transform: capitalize
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

/* ===================
democarousel css 
====================== */
#democarousel img{height: auto;}



/* ===================
home-products css 
====================== */

.products .card {margin-bottom:30px ;}
.products a{width: 100%;}
.products .card figure img{transform: scale(1.0); height: 300px;width: 100%;}
.products .card:hover figure img{transform: scale(1.1);}
.products .card figure{margin: 0;overflow: hidden;}
.products .card .card-body{padding: 0;}

.products .card .card-title{padding: 10px 10px ;    font-size: 15px;
    text-align: center;
    background-color: #1B3F78;
    margin: 0;
    border: 1px solid #1B3F78;
    color: #ffffff;
    font-weight: 600; }
.myproducts p{text-align: justify;}
.myproducts h2 span{ /*font-size: 23px; display: flex;*/}
.stylish-text{font-family: "roboto", sans-serif !important;
/*  font-weight: 400;*/
  font-style: normal;}

/*.myproducts figure {border: 2px solid #1b3f78; border-radius: 30px; padding: 10px;}
.myproducts figure img{height: auto !important;border-radius: 30px;}*/
.myproducts ul li{padding-left: 30px; position: relative; color: #555;}
.myproducts ul li:before{    content: '\f00c '; color: #7d8f01;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;}

.products-nav .list-group-item.active {background-color: #861212; border-color: #fff !important;}
.products-nav .list-group-item:hover{background-color: #1b3f78; color: #fff !important}
.products-nav .list-group-item{border-radius: 0; margin-top: -1px; line-height: 21px;}

.products-nav-wrap{background-color: #f5f5f5;padding: 20px 10px; box-shadow: 0 0 10px #ddd}

.zoom{margin: 0;overflow: hidden;}
.zoom img{transform: scale(1.0); height: auto;width: 100%;}
.zoom:hover img{transform: scale(1.1);}

/* ===================
blog-title-box css 
====================== */

.blog .blog-title-box {text-align: center;background-color: #1B3F78;padding: 50px 0;}
.blog .blog-title-box h2{color: #fff;}
.blog .blog-wrap .card-body{padding: 10px;background-color: #f1f1f1;}
.blog .blog-wrap .card-body .card-subtitle{line-height: 1.7; color: #000;font-size: 14px;margin-top: 10px;}
.blog .blog-wrap .card-body .card-text{line-height: 1.7;color: #000; font-size: 14px;margin: 20px 0;}
.blog .blog-wrap .card-body .card-link{line-height: 1.7; color: #000;font-size: 12px; font-style: italic;}
.blog .blog-wrap .card-body .card-link:hover{color: #f00;}
.blog .blog-wrap .card-body .post{line-height: 1.7; color: #000;font-size: 12px; font-style: italic;}
.button{display: inline-block;
    margin-top: 30px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #767676;
    padding: 12px 16px;}


/* ===================
display css 
====================== */

.display p{ margin-bottom: 10px;   color: #FCBB32;  text-align: center; font-size: 30px; line-height: 44px;}
.display h1 {color: #fff;}

/* ===================
testimonial css 
====================== */

.testimonial-area {position: relative;z-index: 1;}
.testimonial-area .site-title{ margin-bottom: 30px;}
.testimonial-wrapper { margin-bottom: 20px;}
.testimonial-wrapper p { margin-bottom: 20px;}
.testimonial-wrapper h4 {font-size: 16px;color: #f00;text-transform: uppercase;padding: 0px; line-height: 30px;}

/* ===================
enquiry css 
====================== */

.enquiry .enquiry-form{margin-top: 30px;}

/* ===================
footer css 
====================== */

.footer-area {
  background: #202020;
  position: relative;
  z-index: 1;
}

.footer-widget-box {
  margin: 50px 0;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 240px;
  margin-bottom: 20px;
}

.footer-widget-title {
  color: #fff;
  position: relative;
  padding-bottom: 30px;
  /*margin-bottom: 30px;*/
  z-index: 1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-list li {
  font-size: 16px;


}

.footer-list li a {
  color: #fff;
  transition: all .5s ease-in-out;
}

.footer-list li a i{
  margin-right: 5px;
  color: #fff;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: #fff;
}

.footer-widget-box p {
  color: #fff;
  padding-right: 18px;
  margin-bottom: 20px;    line-height: 26px;
}




.footer-newsletter .subscribe-form .form-control {
  border: 2px solid #e8e8e8;
  height: 55px;
  padding: 0 15px;
  border-radius: 0px;
  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 .form-control:-ms-input-placeholder {
  color: #F2F3F5;
}

.footer-newsletter .subscribe-form .form-control::-ms-input-placeholder {
  color: #F2F3F5;
}

.footer-newsletter .subscribe-form .theme-btn {
  margin-top: 20px;
}

.footer-newsletter .subscribe-form .theme-btn:hover {
  background: #fff;
  color: #fff;
}

.footer-contact li {
      position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    color: #f5faff;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 24px;
    padding-left: 38px;
}

.footer-contact li a {
  color: #f5faff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
      width: 22px;
    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: #fff;
    position: absolute;
    left: 4px;
    top: 0;
}
/* copy right start */

.copyright {
  padding: 20px 0;
  background: #000;
}

.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: #fff;
}

.copyright .copyright-text {
  color: #f5faff;
  margin-bottom: 0px;
  font-size: 14px;
  text-align: center;
}

.copyright .copyright-text a {color: #fff;
}

/* ===================
scroll-top css
====================== */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background: #a4b71d;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
  transition: all .5s ease-in-out;
}


/* ===================
Contact Content css 
====================== */

.contact-content {
  margin-bottom: 50px;
}

.contact-info {
  display: flex;
/*  align-items: center;*/
  gap: 30px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.contact-info-icon{
    width: 62px;
    height: 62px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgb(114 130 2);
    /* transform: rotate(45deg);*/
}

.contact-info-icon i {
     font-size: 25px;
    color: #000;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #fefefe;
    /* transform: rotate(-45deg); */
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    border: 0 solid #fff;
    font-weight: 800;
      transition: all 2s;

}

.contact-info-icon:hover{
  transform: rotate(360deg); 
  transition: all 2s;
}

.contact-info h5 {
  color: #171B2A;
  margin-bottom: 5px;
}

.contact-info p {
  color: #171B2A;
}




.titlebox{border-left: 6px solid #21447b;padding-left: 20px;  font-size: 36px;font-weight: 600; display: grid;
    line-height: 46px; color: #21447b;margin: 0;}
.titlebox span { color: #898989;display: block;font-size: 20px;}
.titlebox h2 { color: #898989;display: block;font-size: 20px;}
.redtext{font-size: 18px; line-height: 27px; color: #FCBB32; margin-bottom: 15px;}
.titlebox p{line-height: 30px; font-size: 30px; font-weight: 600;}


.connect {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    z-index:999;
}

.connect a {
    display: block;
    text-align: center;
    padding: 12px;
    transition: all 0.3s ease;
    color: white;
    font-size: 32px;
}

.connect a:hover {
    background-color: #da251c;
    color: #fff;
}
.facebook {
  background: #3B5998;
  color: white;
}
.whatsapp {
  background:#6cad0d;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #1770a8;
  color: white;
}

.phone {
  background: #1770a8;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #dd4b39;
  color: white;
}



.bigmenu{ width:500px !important; left:-236px; }
.bigmenu li{float: left; width: 250px}


.navbar-brand img{width: 180px}

.box-counter{margin-top: 30px; height: 90%;  text-align: center;box-shadow: 0 0 10px #ddd; padding: 40px 20px;  }

.box-counter i {display: flex ;justify-content:center ;margin:auto; 
  align-items: center;font-size: 30px;color: #a4b71d; width: 60px; height: 60px; line-height: 0; padding: 20px; background-color: #000;margin-bottom: 30px;border-radius: 50%;}

.product-img1 img{height: 450px}


/*----------------------  */

/*------css for FAQ-------*/
.accordion-div{text-align:left; padding:5px 0 30px;}
.accordion-div .readmorelink{text-decoration: none; background: #ccc; padding: 5px 10px;  display: inline-block;  margin: 10px 0 0;}
.accordion-div .readmorelink:hover{background:#c5c5c5;}            
.accordion-div h2{font-size:30px; font-weight:500; line-height:1.5; margin: 0 0 12px;}
.accordion{border-bottom:1px solid #849700; background:#f5f5f5; margin:5px 0;}
.accordion-div .accordion:last-child{border-bottom:none;}
.accordion h3{font-weight:400; color: #444 !important; letter-spacing: 0.5px; font-size:16px; position:relative; cursor: pointer; padding: 10px 15px; margin: 0; text-transform: none;
line-height:1.3;}
.accordion h3:before{content:"+"; position:absolute; right:10px; top:5px; font-size:24px; transition:all 0.5s;}
.accordion h3.open:before{transform: rotate(45deg); position:absolute;}
/*.accordion h3.open{background:#404040; color: #fff;}*/
.accordion-content p, .accordion-content li{margin:0 0 8px; font-size:13px; color: #000}
.accordion-div .accordion .accordion-content{display:none; padding:10px 15px;}
.accordion-div .accordion .accordion-content h4{font-size: 16px;color: #849700}
.accordion-content li{position: relative;}
.accordion-content li:before{display: inline-block; content: ''; border-radius: 50%; height: 9px; width: 9px; margin-right: 10px; background-color: #656565;}


ol li{list-style:start}

.brandname {position: fixed;top: 0; right: 0; padding: 21px 10px; background-color: #fff; z-index:100; text-align: center; box-shadow: 0 0 10px #ccc}
.brandname a img{width: 100px; transition: 2s;transform: scale(1.0)}

.brandname a:hover  img{transform: scale(1.3);transition: 2s;}

