

.text-justify {
  text-align: justify;
}

body {
  font-family: "Sora", Sans-serif;
  color: #3A474F;
  font-size: 1.2rem;
  line-height: 1.5;
  // background-color: #F2FBFF;
}

a {
  color: #414141;
  font-weight: 600;
  text-decoration: none;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
a:hover {
  color: #E78728;
  text-decoration: none;
}


/*-------------------
----HEADER  --------------------------------------------------------
---------------------*/
#home-page > .header { }

@media (min-width: 1200px) {
  #home-page > .header.container-fluid {
    width: 85%;
    margin: 0 auto;
  }
}

/*-------------------
----TOPBAR SOCIAL ICONS --------------------------------------------------------
---------------------*/
#header-top {
  padding: 0;
  margin: 0;
}
#header-top .topbar-social-icons { }
#header-top .topbar-social-icons .xurl-social-icons {
  margin-bottom: 0;
}
#header-top .topbar-social-icons .xurl-social-icons a.social-icon {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  width: 30px;
  height: 30px;
  padding-left: 0;
  padding-right: 0;
  padding: .25rem .5rem;
  border: 1px solid #0a81f0;
  background-color: #0a81f0;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
#header-top .topbar-social-icons .xurl-social-icons a.social-icon:hover {
  background-color: #fff;
}
#header-top .topbar-social-icons .xurl-social-icons a.social-icon:hover span {
  color: #000;
}

/* Header-Top Data: address, email, telephon */
#header-top .header-top-data { }


/*-------------------
---- SITE NAVIGATION -----------------------------------------------------------
---------------------*/
nav.navbar { }

/*
@media (min-width: 1200px) {
  nav.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    z-index: 1030;
  }
}
*/

nav.navbar ul.navbar-nav { }
nav.navbar ul.navbar-nav li.nav-item { }
nav.navbar ul.navbar-nav li.nav-item a.nav-link,
nav.navbar ul.navbar-nav li.nav-item.dropdown a.dropdown-toggle { 
  position: relative;
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #3A474F;
  margin-left: 25px;
  padding: 35px 0;  
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
nav.navbar ul.navbar-nav li.nav-item a.nav-link:hover, 
nav.navbar ul.navbar-nav li.nav-item.dropdown a.dropdown-toggle:hover,
nav.navbar ul.navbar-nav li.nav-item.active a.nav-link {
  color: #E78728;
}

@media (min-width: 1200px) {
  nav.navbar ul.navbar-nav li.nav-item a.nav-link:before,
  nav.navbar ul.navbar-nav li.nav-item.dropdown a.dropdown-toggle:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: #E78728;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
  }
  nav.navbar ul.navbar-nav li.nav-item.active a.nav-link:before,
  nav.navbar ul.navbar-nav li.nav-item.active.dropdown a.dropdown-toggle:before {
    width: 100%;
    left: 0;
  }
  nav.navbar ul.navbar-nav li.nav-item a.nav-link:hover:before,
  nav.navbar ul.navbar-nav li.nav-item.dropdown a.dropdown-toggle:hover:before,
  nav.navbar ul.navbar-nav li.nav-item.active a.nav-link:before {
    width: 100%;
    left: 0;
  }
}


/* Dropdown */
nav.navbar ul.navbar-nav li.nav-item.dropdown:hover .dropdown-menu {
  margin-top: 0.125em;
}
nav.navbar ul.navbar-nav li.nav-item.dropdown .dropdown-menu {
  min-width: 250px;
  background-color: rgba(215, 235, 123, 1);
  /* text-transform: uppercase; */
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 0.5rem 1rem;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0 0.5rem 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0.5rem 1rem;
}
nav.navbar ul.navbar-nav li.nav-item.dropdown .dropdown-menu li {
  display: block;
  overflow: hidden;
}

/* NAVBAR TOGGLER */
nav.navbar .navbar-toggler {
  color: #091E3F;
  border-color: #091E3F;
}
nav.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: none !important;
  background-color: #091E3F;
  height: 3px;
  width: 25px;
  margin: 10px 0;
  position: relative;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  transform-origin: center;
}
nav.navbar .navbar-toggler .navbar-toggler-icon:before {
  display: block;
  background-color: #091E3F;
  height: 3px;
  content: "";
  position: relative;
  top: -7px;
  -o-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; /*taken down to hide quicker*/
  transform-origin: center;
}
nav.navbar .navbar-toggler .navbar-toggler-icon:after {
  display: block;
  background-color: #091E3F;
  height: 3px;
  content: "";
  position: relative;
  top: 4px;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  transform-origin: center;
}
nav.navbar .navbar-toggler .navbar-toggler-icon,
nav.navbar .navbar-toggler .navbar-toggler-icon:before,
nav.navbar .navbar-toggler .navbar-toggler-icon:after {
  background-color: #091E3F;
}
nav.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon:before {
  opacity: 0;
}
nav.navbar .navbar-toggler:not(.collapsed) .navbar-toggler-icon:after {
  -moz-transform: rotate(-90deg) translateX(7px);
  -o-transform: rotate(-90deg) translateX(7px);
  -ms-transform: rotate(-90deg) translateX(7px);
  transform: rotate(-90deg) translateX(7px);
}


@media (max-width: 1199.98px) {
  nav.navbar ul.navbar-nav {
    padding: 10px !important;
  }
  nav.navbar ul.navbar-nav li.nav-item a.nav-link,
  nav.navbar ul.navbar-nav li.nav-item.dropdown a.dropdown-toggle {
    color: #000;
    padding: 6px 0;
  }
  nav.navbar.sticky-top {
    position: relative;
    background: #fff;
    width: 100%;
    background: #EBF9FF;
  }
}

@media (min-width: 1200px) {
  nav.navbar.sticky-top {
    position: fixed;
    background: #fff;
    width: 85%;
  }
  nav.navbar.sticky-top ul.navbar-nav li.nav-item a.nav-link,
  nav.navbar.sticky-top ul.navbar-nav li.nav-item.dropdown a.dropdown-toggle {
    padding: 20px 0;
    color: #091E3F;
  }
  nav.navbar.sticky-top ul.navbar-nav li.nav-item a.nav-link:hover, 
  nav.navbar.sticky-top ul.navbar-nav li.nav-item.dropdown a.dropdown-toggle:hover,
  nav.navbar.sticky-top ul.navbar-nav li.nav-item.active a.nav-link {
    color: #E78728;
  }
  
}



@media screen and (min-width: 1200px) {
  .dropdown-niv2 {
      .dropdown-menu-niv2 {
        opacity:0;
        display: block;
        visibility: hidden;
        transform: translateY(-4px);
        transition: all .2s ease;
      }
    
    &:hover {
      .dropdown-menu-niv2 {
        transform: translateY(0);
        margin-top: 0;
        visibility: visible;
        opacity:1;
      }
    }
  }
}











/*-------------------
----- SITELOGO, SITENAME, SITETAG ----------------------------------------------
---------------------*/
.navbar-brand img.logo {
//  width: 2.5rem !important;
//  height: auto !important;
  max-width: 100px;
  margin: 5px !important;
  -o-transition: .5s all ease-in-out;
  -ms-transition: .5s all ease-in-out;
  -moz-transition: .5s all ease-in-out;
  -webkit-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out;
}
.navbar-brand {
  font-family: "Jost",sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase; 
  padding: 10px; 
}
.navbar-brand a {
  color: #3A474F;
}
.navbar-brand a:hover {
  color: #E78728;
}


@media (min-width: 1200px) {
  .navbar-brand {
    font-size: 2.5rem;
  }
}



/*
.navbar-brand .site-tag {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: .65rem;
  line-height: 1;
  text-transform: uppercase; 
  padding: 0 10px 0 50px;   
}
*/


/*------------------------------------------
--------------HOMESITE----------------------
-------------------------------------------*/
.top-50 {top: 50% !important;}
.top-40 {top: 40% !important;}
.top-30 {top: 30% !important;}
.top-20 {top: 20% !important;}
.top-15 {top: 15% !important;}

#home-page h1 {
  color: #3a474f;
  font-family: "Sora", Sans-serif;
  // font-size: 5rem;
  font-weight: 700;
  line-height: 1.3em;
}
#home-page h2 {
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  // font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 1px;
}
#home-page h3 {
  color: #3a474f;
  font-family: "Sora", Sans-serif;
  // font-size: 2rem;
  font-weight: 700;
  line-height: 1.3em;
  text-transform: uppercase;
}
#home-page h3 svg {
  display: inline-block;
  height: 1em;
  position: relative;
  width: 1em;
  color: #E78728;
}

/*-------------------
----Carousel helyett kép -------------------------------------------------------
---------------------*/
#home-page .section-top {}

@media (min-width: 1200px) {
  #home-page .section-top > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
}

#home-page .home-page-img {
  height: 600px;
}
#home-page .home-page-logo {
  max-width: 200px;
  height: auto;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  webkit-box-shadow: inset 0 0 100px #F2FBFF;
  -moz-box-shadow: inset 0 0 100px #F2FBFF;
  box-shadow: inset 0 0 100px #F2FBFF;
}

@media (min-width: 1200px) {
  #home-page .section-top-slogen {
    width: 30%;
  }
}

#home-page .section-top-slogen {
  font-family: "Bebas Neue", Sans-serif;
}


#home-page span.Word_0, #main_content span.Word_0 { }
#home-page span.Word_1, #main_content span.Word_1 { color: rgb(236, 70, 19); }
#home-page span.Word_2, #main_content span.Word_2 { }
#home-page span.Word_3, #main_content span.Word_3 { }
#home-page span.Word_4, #main_content span.Word_4 { color: rgb(236, 70, 19); }
#home-page span.Word_5, #main_content span.Word_5 { }
#home-page span.Word_6, #main_content span.Word_6 { color: rgb(236, 70, 19); }
#home-page span.Word_7, #main_content span.Word_7 { }
#home-page span.Word_8, #main_content span.Word_8 { }
#home-page span.Word_9, #main_content span.Word_9 { color: rgb(236, 70, 19); }
#home-page span.Word_10, #main_content span.Word_10 {  }


/*-------------------
----Hompage background ----------------------------------------------------------
---------------------*/
.bg-1 {
  background-image: -webkit-linear-gradient(90deg, rgba(180, 213, 24, 0.1) 0%, rgba(180, 213, 24, 0.02) 100%); /* Chrome10-25, Saf5.1-Saf6, iOS -6.1, Android -4.3 */
  background-image: -moz-linear-gradient(90deg, rgba(180, 213, 24, 0.1) 0%, rgba(180, 213, 24, 0.02) 100%); /* Fx3.6-15 */
  background-image: -o-linear-gradient(90deg, rgba(180, 213, 24, 0.1) 0%, rgba(180, 213, 24, 0.02) 100%); /* Op11.10-12.02 */
  background-image: linear-gradient(90deg, rgba(180, 213, 24, 0.1) 0%, rgba(180, 213, 24, 0.02) 100%); /* W3C, Fx16+, Chrome26+, IE10+, Op12.10+, Saf6.1+ */
}
.bg-2 {
  background-image: -moz-radial-gradient(rgba(180, 213, 24, 0.2), rgba(180, 213, 24, 0));
  background-image: -webkit-gradient(radial, rgba(180, 213, 24, 0.2), rgba(180, 213, 24, 0)); /* old */
  background-image: -webkit-radial-gradient(rgba(180, 213, 24, 0.2), rgba(180, 213, 24, 0)); /* new syntax */
  background-image: radial-gradient(rgba(180, 213, 24, 0.2), rgba(180, 213, 24, 0));
}
.bg-3 {
  background-image: -webkit-linear-gradient(90deg, #FBF7D5 0%, #FFFFFF 100%);
  background-image: -moz-linear-gradient(90deg, #FBF7D5 0%, #FFFFFF 100%);
  background-image: -o-linear-gradient(90deg, #FBF7D5 0%, #FFFFFF 100%);
  background-image: linear-gradient(90deg, #FBF7D5 0%, #FFFFFF 100%);
}
.bg-4 {
  background-image: -webkit-linear-gradient(90deg, #FFFDD0 0%, #FFFFFF 100%);
  background-image: -moz-linear-gradient(90deg, #FFFDD0 0%, #FFFFFF 100%);
  background-image: -o-linear-gradient(90deg, #FFFDD0 0%, #FFFFFF 100%);
  background-image: linear-gradient(90deg, #FFFDD0 0%, #FFFFFF 100%);
}
.bg-5 {
  background-image: -webkit-linear-gradient(90deg, #FFFFE0 0%, #FFFFF0 100%);
  background-image: -moz-linear-gradient(90deg, #FFFFE0 0%, #FFFFF0 100%);
  background-image: -o-linear-gradient(90deg, #FFFFE0 0%, #FFFFF0 100%);
  background-image: linear-gradient(90deg, #FFFFE0 0%, #FFFFF0 100%);
}
.bg-6 {
  background-image: -webkit-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: -moz-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: -o-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
}
.bg-7 {
  background-image: -webkit-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.2) 100%);
  background-image: -moz-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.2) 100%);
  background-image: -o-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.2) 100%);
  background-image: linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.2) 100%);
}
.bg-8 {
  background-image: -webkit-gradient(radial, circle,rgba(248, 251, 232, 0.25) 0%, rgba(248, 251, 232, 1) 50%, rgba(248, 251, 232, 0.25) 100%);
  background-image: -o-radial-gradient (circle,rgba(248, 251, 232, 0.25) 0%, rgba(248, 251, 232, 1) 50%, rgba(248, 251, 232, 0.25) 100%);
  background-image: -moz-radial-gradient(circle,rgba(248, 251, 232, 0.25) 0%, rgba(248, 251, 232, 1) 50%, rgba(248, 251, 232, 0.25) 100%);
  background-image: -webkit-radial-gradient(circle,rgba(248, 251, 232, 0.25) 0%, rgba(248, 251, 232, 1) 50%, rgba(248, 251, 232, 0.25) 100%);
  backgroundimage: radial-gradient(circle,rgba(248, 251, 232, 0.25) 0%, rgba(248, 251, 232, 1) 50%, rgba(248, 251, 232, 0.25) 100%);
}



/*-------------------
----COMMUNITY MESSAGE ----------------------------------------------------------
---------------------*/
.section-community { 
  margin-top: 0px;
}

@media (min-width: 1200px) {
  #home-page .section-community > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #home-page .section-community > .container-fluid > .section-community-inner {
    width: 85%;
    margin: 0 auto;
  }
}

.section-community .community-title {
  padding-top: 100px;
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 1px;
}
.section-community .community-title svg {
  display: inline-block;
  height: 1em;
  position: relative;
  width: 1em;
  color: #E78728;
}

.section-community .community-title::before,
.section-community .community-title::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid #E78728;
    width: 4rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .section-community .community-title {
    font-size: 2rem !important;
  }
  .section-community .community-title::before,
  .section-community .community-title::after {
    width: 0rem;
  }
}

.section-community .community-title-2 {
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 1px;
}

@media (max-width: 1199.98px) {
  .section-community .community-title-2 {
    font-size: 1.5rem !important;
  }
  .section-community .community-slogen {
    font-size: 0.875rem;
  }
}

.section-community img.community-image-1 { 
  max-height: 320px;
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}

/* First Image with inside borders */
.section-community .community-image-1-outer:before, 
.section-community .community-image-1-outer:after, 
.section-community .community-image-1-outer>:last-child:before, 
.section-community .community-image-1-outer>:last-child:after {
    position: absolute;
    width: 60px; 
    height: 50px;
    border-color: rgba(181, 214, 23, 1); 
    border-style: solid;
    content: ' ';
}
.section-community .community-image-1-outer:before {
    top: 10px;
    left: 10px;
    border-width: 4px 0 0 4px;
}
.section-community .community-image-1-outer:after {
    top: 10px;
    right: 10px;
    border-width: 4px 4px 0 0;
}
.section-community .community-image-1-outer>:last-child:before {
    bottom: 10px;
    right: 10px;     
    border-width: 0 4px 4px 0;
}
.section-community .community-image-1-outer>:last-child:after {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 4px 4px;
}
.section-community .community-image-1-outer>p {
  margin: 0;
}

/* 2. an 3. Images with images borders */
.section-community #one.community-image-2 {
  background-size:cover;
  background-origin: border-box;
  border: 20px solid rgba(245, 245, 245, 0.5);
  background-image: url(images/happy-friends-2.jpg);
  background-position:center center;
  background-repeat:no-repeat;
  height: 320px;
  max-height: 320px;
  -webkit-box-shadow: 30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px -30px 0px -20px rgba(181, 214, 23, 1);
}
.section-community #two.community-image-3 {
  background-size:cover;
  background-origin: border-box;
  border: 20px solid rgba(245, 245, 245, 0.5);
  background-image: url(images/community-image-2.jpg);
  background-position:center center;
  background-repeat:no-repeat;
  height: 320px;
  max-height: 320px;
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}

/*
.section-community img.community-image-2 { 
  max-height: 320px;
  -webkit-box-shadow: 30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px -30px 0px -20px rgba(181, 214, 23, 1);
}
.section-community img.community-image-3 { 
  max-height: 320px;
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}
*/

.community-menu-1-box,
.community-menu-2-box {
  background-color: #ffffe0;
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.community-menu-1-box .community-menu-title,
.community-menu-2-box .community-menu-title {
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 700;
  color: #E78728 !important;
  letter-spacing: 1px;
}
.community-menu-1-box .community-menu-title-divider,
.community-menu-2-box .community-menu-title-divider {
  position: relative;
  width: 100px;
  height: 4px;
  background-color: #E78728;
  margin-left: 30px;
}
.community-menu-1-box .community-menu-title-divider:before,
.community-menu-2-box .community-menu-title-divider:before {
  content: "";
  position: absolute;
  color: #E78728;
  left: -27px;
  top: 0;
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #E78728;
  -webkit-box-shadow: 9px 0 0 0 currentColor,18px 0 0 0 currentColor;
  box-shadow: 9px 0 0 0 currentColor,18px 0 0 0 currentColor;
}
.community-menu-1-box .community-menu-body,
.community-menu-2-box .community-menu-body {}

/*-------------------
----WHY CHOOSE US ----------------------------------------------------------
---------------------*/
.section-choose-us { }

@media (min-width: 1200px) {
  #home-page .section-choose-us > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #home-page .section-choose-us > .container-fluid > .section-choose-us-inner {
    width: 85%;
    margin: 0 auto;
  }
}

.section-choose-us .section-choose-us-title {
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 1px;
}
.section-choose-us .section-choose-us-title::before,
.section-choose-us .section-choose-us-title::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid #E78728;
    width: 4rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .section-choose-us .section-choose-us-title {
    font-size: 2rem !important;
  }
  .section-choose-us .section-choose-us-title::before,
  .section-choose-us .section-choose-us-title::after {
    width: 0rem;
  }
}

.section-choose-us .section-choose-us-title svg {
  display: inline-block;
  height: 1em;
  position: relative;
  width: 1em;
  color: #E78728;
}
.section-choose-us img { 
}
.section-choose-us img.choose-us-image-1 {
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}

.section-choose-us #one.choose-us-image-2 {
  background-size:cover;
  background-origin: border-box;
  border: 20px solid rgba(245, 245, 245, 0.5);
  background-image: url(images/mavex-terem-2.jpg);
  background-position:center center;
  background-repeat:no-repeat;
  height: 730px;
  max-height: 730px;
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}
.section-choose-us #two.choose-us-image-3 {
  background-size:cover;
  background-origin: border-box;
  border: 20px solid rgba(245, 245, 245, 0.5);
  background-image: url(images/mavex-terem-3.jpg);
  background-position:center center;
  background-repeat:no-repeat;
  height: 730px;
  max-height: 730px;
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}


/*
.section-choose-us img.choose-us-image-2 {
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}
.section-choose-us img.choose-us-image-3 {
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}
*/

.choose-us-menu-outer {
  background-color: #ffffe0;
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.choose-us-menu {
}
.choose-us-menu-title {
  font-family: "Bebas Neue", Sans-serif;
  color: #E78728;
}
.choose-us-menu-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 15px auto 0 auto;
}
.choose-us-menu-body {}

/*-------------------
----SERVICES US ----------------------------------------------------------
---------------------*/
.section-services { }

@media (min-width: 1200px) {
  #home-page .section-services > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #home-page .section-services > .container-fluid > .section-services-inner {
    width: 85%;
    margin: 0 auto;
  }
}

.section-services .section-services-title {
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 1px;
}

.section-services .section-services-title::before,
.section-services .section-services-title::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid #E78728;
    width: 4rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .section-services .section-services-title {
    font-size: 2rem !important;
  }
  .section-services .section-services-title::before,
  .section-services .section-services-title::after {
    width: 0rem;
  }
}

.section-services .section-services-title svg {
  display: inline-block;
  height: 1em;
  position: relative;
  width: 1em;
  color: #E78728;
}
.section-services img { 
}

/* Services Menu Image Bottom */
.section-services .service-main-image-outer {
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}
.section-services .service-main-image-outer:before, 
.section-services .service-main-image-outer:after, 
.section-services .service-main-image-outer>:last-child:before, 
.section-services .service-main-image-outer>:last-child:after {
    position: absolute;
    width: 60px; 
    height: 50px;
    border-color: rgba(181, 214, 23, 1); 
    border-style: solid;
    content: ' ';
}
.section-services .service-main-image-outer:before {
    top: 10px;
    left: 10px;
    border-width: 4px 0 0 4px;
}
.section-services .service-main-image-outer:after {
    top: 10px;
    right: 10px;
    border-width: 4px 4px 0 0;
}
.section-services .service-main-image-outer>:last-child:before {
    bottom: 10px;
    right: 10px;     
    border-width: 0 4px 4px 0;
}
.section-services .service-main-image-outer>:last-child:after {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 4px 4px;
}
.section-services .service-main-image-outer>p {
  margin: 0;
}


/*
.section-services img.service-main-image {
    -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}
*/

.services-menu-outer {
  background-color: #ffffe0;
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.services-menu {
}
.services-menu-title {
  font-family: "Bebas Neue", Sans-serif;
  color: #E78728;
}
.services-menu-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 15px auto 0 auto;
}
.services-menu-body {}
.section-services .service-1,
.section-services .service-2,
.section-services .service-3 {
  background-color: #f8fbe8;
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;  
}
.section-services .service-1:after,
.section-services .service-2:after,
.section-services .service-3:after {
    display: block;
    content: "";
    width: 100px;
    height: 50px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-bottom: 5px solid #E78728;
    border-right: 5px solid #E78728;
}
.section-services .service-1:before,
.section-services .service-2:before,
.section-services .service-3:before {
    display: block;
    content: "";
    width: 100px;
    height: 50px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top: 5px solid #E78728;
    border-left: 5px solid #E78728;
}
.section-services .service-1 .service-1-title,
.section-services .service-2 .service-2-title,
.section-services .service-3 .service-3-title {
  font-family: "Bebas Neue", Sans-serif;
  color: #E78728;
  letter-spacing: 1px;
}

/* Services right menus images */
.section-services #one.service-image-1 {
  background-size:cover;
  background-origin: border-box;
  border: 10px solid rgba(245, 245, 245, 0.5);
  background-image: url(images/service-1.jpg);
  background-position:center center;
  background-repeat:no-repeat;
  height: 200px;
  max-height: 200px;
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}
.section-services #two.service-image-2 {
  background-size:cover;
  background-origin: border-box;
  border: 10px solid rgba(245, 245, 245, 0.5);
  background-image: url(images/service-2.jpg);
  background-position:center center;
  background-repeat:no-repeat;
  height: 200px;
  max-height: 200px;
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}
.section-services #three.service-image-3 {
  background-size:cover;
  background-origin: border-box;
  border: 10px solid rgba(245, 245, 245, 0.5);
  background-image: url(images/service-3.jpg);
  background-position:center center;
  background-repeat:no-repeat;
  height: 200px;
  max-height: 200px;
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}

/*
.section-services .service-1 img,
.section-services .service-2 img,
.section-services .service-3 img {
  max-height: 200px;
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}
*/

.section-services .service-1 button,
.section-services .service-2 button,
.section-services .service-3 button {
  background-color: transparent;
  border: none;
  -moz-border-radius: 0px;
  -khtml-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 7px 7px 5px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 7px 7px 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 7px 7px 5px;
}
.section-services .service-1 button:hover,
.section-services .service-2 button:hover,
.section-services .service-3 button:hover {
  color: #000;
}

/*-------------------
----PRICING ----------------------------------------------------------
---------------------*/
.section-pricing { }

@media (min-width: 1200px) {
  #home-page .section-pricing > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #home-page .section-pricing > .container-fluid > .section-pricing-inner {
    width: 85%;
    margin: 0 auto;
  }
}

.section-pricing .section-pricing-title {
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}

.section-pricing .section-pricing-title::before,
.section-pricing .section-pricing-title::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid #E78728;
    width: 4rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .section-pricing .section-pricing-title {
    font-size: 2rem !important;
  }
  .section-pricing .section-pricing-title::before,
  .section-pricing .section-pricing-title::after {
    width: 0rem;
  }
}

.section-pricing .section-pricing-title svg {
  display: inline-block;
  height: 1em;
  position: relative;
  width: 1em;
  color: #E78728;
}
.price-menu {
}
.price-menu-1.card,
.price-menu-2.card {
  display: inline-block;
  position: relative;
  background: #F8FBE8;
  color: #283D3B;
  -moz-border-radius: 20px;
  -khtml-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: 0 11px 26px 1px #f8ffdb, inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0 11px 26px 1px #f8ffdb, inset 0 -16px 90px #E4E9C9;
  box-shadow: 0 11px 26px 1px #f8ffdb, inset 0 -16px 90px #E4E9C9;
}
.price-menu-1.card.card-1,
.price-menu-2.card.card-1 {
  position: relative;
  border: none;
  webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.price-menu-1.card.card-1 h2 {
  margin: 0;
  width: 100%;
  font-size: 30px;
  background: #ff5744;
  background: -webkit-linear-gradient(to left, #ffa844, #ff5744);
  background: -moz-linear-gradient(to left, #ffa844, #ff5744);
  background: -ms-linear-gradient(to left, #ffa844, #ff5744);
  background: -o-linear-gradient(to left, #ffa844, #ff5744);
  background: linear-gradient(to left, #ffa844, #ff5744);
  padding: 20px 0;
  color: #F7FBE7 !important;
  -webkit-box-shadow: inset 0px 5px 4px -4px #ecddd461;
  -moz-box-shadow: inset 0px 5px 4px -4px #ecddd461;
  box-shadow: inset 0px 5px 4px -4px #ecddd461;
}
.price-menu-2.card.card-1 h2 {
  margin: 0;
  width: 100%;
  font-size: 30px;
  background: #ff5744;
  background: -webkit-linear-gradient(to right, #ffa844, #ff5744);
  background: -moz-linear-gradient(to right, #ffa844, #ff5744);
  background: -ms-linear-gradient(to right, #ffa844, #ff5744);
  background: -o-linear-gradient(to right, #ffa844, #ff5744);
  background: linear-gradient(to right, #ffa844, #ff5744);
  padding: 20px 0;
  color: #F7FBE7 !important;
  -webkit-box-shadow: inset 0px 5px 4px -4px #ecddd461;
  -moz-box-shadow: inset 0px 5px 4px -4px #ecddd461;
  box-shadow: inset 0px 5px 4px -4px #ecddd461;
}
.price-menu-1.card.card-1 h3,
.price-menu-2.card.card-1 h3 {
  margin: 20px 0;
  font-size: 2rem;
  color: #283D3B;
  text-align: center;
  text-transform: none !important;
}
.price-menu-1.card p,
.price-menu-2.card p {
  font-style: italic;
  margin: 0 0 30px 0;
  padding: 0 50px;
}

.price-menu-1.card.card-1 .price-menu-1-body,
.price-menu-2.card.card-1 .price-menu-2-body {}
.price-menu-1.card.card-1 .price-menu-1-body svg,
.price-menu-2.card.card-1 .price-menu-2-body svg {
  color: #197278;
  margin-right: 10px;
}
.price-menu-1.card.card-1 .price-menu-1-body ul,
.price-menu-2.card.card-1 .price-menu-2-body ul {
  text-align: left;
  padding: 0;
  margin: 0;
  font-size: 0.875em;
}
.price-menu-1.card.card-1 .price-menu-1-body ul li,
.price-menu-2.card.card-1 .price-menu-2-body  ul li {
  display: block;
  padding-bottom: 10px;
}
.price-menu-info-outer { 
  background-color: #ffffe0;
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.price-menu-info {

}
.price-menu-info-title {
  font-family: "Bebas Neue", Sans-serif;
  color: #E78728;
}
.price-menu-info-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 15px auto 0 auto;
}
.price-menu-body-info {}
.section-pricing .pricing-mavex-image-1 {
  -webkit-box-shadow: 20px -20px 0px -15px rgba(231, 135, 40, 1);
  -moz-box-shadow: 20px -20px 0px -15px rgba(231, 135, 40, 1);
  box-shadow: 20px -20px 0px -15px rgba(231, 135, 40, 1);
}



/*-------------------
----LATEST NEWS - HOMESITE ------
---------------------*/
.section-latest-news {}

@media (min-width: 1200px) {
  #home-page .section-latest-news > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #home-page .section-latest-news > .container-fluid > .section-latest-news-inner {
    width: 85%;
    margin: 0 auto;
  }
}

.section-latest-news .latest-news-header-title { 
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}

.section-latest-news .latest-news-header-title::before,
.section-latest-news .latest-news-header-title::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid #E78728;
    width: 4rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .section-latest-news .latest-news-header-title {
    font-size: 2rem !important;
  }
  .section-latest-news .latest-news-header-title::before,
  .section-latest-news .latest-news-header-title::after {
    width: 0rem;
  }
}

.section-latest-news .latest-news-header-title svg {
  display: inline-block;
  height: 1em;
  position: relative;
  width: 1em;
  color: #E78728;
}

/* Featured Item */
.section-latest-news .latest-news-featured-item {
  background-color: #ffffe0;
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.section-latest-news .latest-news-featured-item-title { }
.section-latest-news .latest-news-featured-item-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 10px 0;
}

.section-latest-news .latest-news-featured-item .latest-news-featured-item-image {
  background-size:cover;
  background-origin: border-box;
  border: 20px solid rgba(245, 245, 245, 0.5);
  background-position:center center;
  background-repeat:no-repeat;
  height: 410px;
  max-height: 410px;
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}


/*
.section-latest-news .latest-news-featured-item .latest-news-featured-item-image img {
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}
*/

.section-latest-news .latest-news-featured-item:hover .latest-news-featured-item-image {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s;
}
.section-latest-news .latest-news-featured-item .latest-news-featured-item-date {
  font-size: 0.775rem;
}
.section-latest-news .latest-news-featured-item .latest-news-featured-item-summary {
  font-family: "Sora", sans-serif;
  // color: #6B6A75;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  height: 72px;
  overflow: hidden;
}

/* Other Items */
.section-latest-news .latest-news-item {  
  background-color: #f8fbe8;
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.section-latest-news .latest-news-item:after {
    display: block;
    content: "";
    width: 100px;
    height: 50px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-bottom: 5px solid #E78728;
    border-right: 5px solid #E78728;
}
.section-latest-news .latest-news-item:before {
    display: block;
    content: "";
    width: 100px;
    height: 50px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top: 5px solid #E78728;
    border-left: 5px solid #E78728;
}
.section-latest-news .latest-news-item .latest-news-item-date {
  font-size: 0.775rem;
}
.section-latest-news .latest-news-item .latest-news-item-title {
  color: #414141;
  font-family: "Jost", Sans-serif;
  // font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3em;
}
.section-latest-news .latest-news-item .latest-news-item-image img {
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}
@media (min-width: 1200px) {
  .section-latest-news .latest-news-item .latest-news-item-image img {
    max-height: 200px;
  }
}
.section-latest-news .latest-news-item:hover .latest-news-item-image img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s;
}
/* Read more */
.section-latest-news .latest-news-item .latest-news-item-read-more,
.section-latest-news .latest-news-featured-item .latest-news-featured-item-read-more {
  position: relative;
}
.section-latest-news .latest-news-item .latest-news-item-read-more a,
.section-latest-news .latest-news-featured-item .latest-news-featured-item-read-more a {
  display: inline-block;
  position: relative;
  font-family: "Jost",sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;  
  padding: 4px 25px;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background: #ff5744;
  background: -webkit-linear-gradient(to left, #ffa844, #ff5744); 
  background: -moz-linear-gradient(to left, #ffa844, #ff5744); 
  background: -ms-linear-gradient(to left, #ffa844, #ff5744); 
  background: -o-linear-gradient(to left, #ffa844, #ff5744); 
  background: linear-gradient(to left, #ffa844, #ff5744);  
}
.section-latest-news .latest-news-item .latest-news-item-read-more a:hover,
.section-latest-news .latest-news-featured-item .latest-news-featured-item-read-more a:hover {
  color: #fff;
}
.section-latest-news .latest-news-item .latest-news-item-read-more a:after,
.section-latest-news .latest-news-featured-item .latest-news-featured-item-read-more a:after {
  font-family: "Font Awesome 6 Free";
  content: "\f178";
  font-weight: 900;
  display: inline-block;
  font-size: 1rem;
  margin-left: 6px;
  filter: alpha(opacity=0);  /* IE 6-8 */
  -moz-opacity: 0;          /* Firefox < 0.9 */
  -khtml-opacity: 0;        /* Safari 1.x */
  opacity: 0;               /* Modern browsers */
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.section-latest-news .latest-news-item .latest-news-item-read-more a:hover:after,
.section-latest-news .latest-news-featured-item .latest-news-featured-item-read-more a:hover:after {
  filter: alpha(opacity=100);  /* IE 6-8 */
  -moz-opacity: 1;          /* Firefox < 0.9 */
  -khtml-opacity: 1;        /* Safari 1.x */
  opacity: 1;               /* Modern browsers */
  right: 15px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.section-latest-news .latest-news-item .latest-news-item-read-more a span,
.section-latest-news .latest-news-featured-item .latest-news-featured-item-read-more a span {
  left: 0;
  position: relative;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.section-latest-news .latest-news-item .latest-news-item-read-more a:hover span,
.section-latest-news .latest-news-featured-item .latest-news-featured-item-read-more a:hover span {
  left: -12px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.section-latest-news .latest-news-item .latest-news-item-read-more:after,
.section-latest-news .latest-news-featured-item .latest-news-featured-item-read-more:after {
  content:" ";
  height: 1px;
  width: auto;
  background: #e8e8e8;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 116px;
}


/*-------------------
----PORTFOLIO - HOMESITE ---------------------------------------------
---------------------*/

/* Portfolio Images */
.section-portfolio { }

@media (min-width: 1200px) {
  #home-page .section-portfolio > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #home-page .section-portfolio > .container-fluid > .section-portfolio-inner {
    width: 85%;
    margin: 0 auto;
  }
}

.section-portfolio .home-portfolio .portfolio-title { 
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}

.section-portfolio .home-portfolio .portfolio-title::before,
.section-portfolio .home-portfolio .portfolio-title::after {
    display: inline-block;
    content: "";
    border-top: .3rem solid #E78728;
    width: 4rem;
    margin: 0 1rem;
    transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .section-portfolio .home-portfolio .portfolio-title {
    font-size: 2rem !important;
  }
  .section-portfolio .home-portfolio .portfolio-title::before,
  .section-portfolio .home-portfolio .portfolio-title::after {
    width: 0rem;
  }
}

.section-portfolio .home-portfolio .portfolio-title svg {
  display: inline-block;
  height: 1em;
  position: relative;
  width: 1em;
  color: #E78728;
}

/* Portfolio MultiSlider */
@media (max-width: 767px) {
  .section-portfolio .carousel-inner .carousel-item > div {
    display: none;
  }
  .section-portfolio .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
.section-portfolio .carousel-inner .carousel-item.active,
.section-portfolio .carousel-inner .carousel-item-next,
.section-portfolio .carousel-inner .carousel-item-prev {
  display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
  .section-portfolio .carousel-inner .carousel-item-end.active,
  .section-portfolio .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }
  .section-portfolio .carousel-inner .carousel-item-start.active, 
  .section-portfolio .carousel-inner .carousel-item-prev {
	transform: translateX(-25%);
  }
}
.section-portfolio .carousel-inner .carousel-item-end,
.section-portfolio .carousel-inner .carousel-item-start { 
  transform: translateX(0);
}
.section-portfolio .carousel-control-prev,
.section-portfolio .carousel-control-next {
  width: 5%;
}


/* Portfolio Gallery */
#portfolio-gallery { }
#portfolio-gallery .gallery-item {
  position: relative;
  border: 6px solid rgba(181, 214, 23, 1);
  -webkit-box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.15);
  box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.15);
}
#portfolio-gallery .gallery-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}
#portfolio-gallery .gallery-item:hover:before {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
#portfolio-gallery .gallery-item img { 
  
}
#portfolio-gallery .gallery-item .hover-text {
  position: absolute;
  left: 0px;
  width: 100%;
  text-align: center;
  bottom: 15px;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
}
#portfolio-gallery .gallery-item .hover-text h4 {
  font-family: "Nunito",sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #000; 
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#portfolio-gallery .gallery-item:hover .hover-text {
  bottom: 35px;
}
#portfolio-gallery .gallery-item .hover-text a.gallery-caption {
  display: inline-block; 
  width: 65px;
  height: 65px;
  line-height: 0px;
  height: 0px;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff; 
  text-align: center;
  padding: 0px 11.5px;
  background-color: #06A3DA;
  border: 1px solid #06A3DA;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 50px transparent;
  -moz-box-shadow: inset 0 0 0 50px transparent;
  box-shadow: inset 0 0 0 50px transparent;
  --webkit-transition: .5s;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  transition: .5s; 
  text-indent: -9999px;
}
#portfolio-gallery .gallery-item .hover-text a.gallery-caption:after {
  font-family: "Font Awesome 6 Free";
  content: "\2b";
  font-weight: 900;
  text-indent: 0;
  display: block;
  line-height: 65px;
  font-size: 3rem;
}
#portfolio-gallery .gallery-item:hover .hover-text a.gallery-caption {
  height: 100%;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  margin-top: 22px;
}
#portfolio-gallery .gallery-item:hover .hover-text a.gallery-caption:hover {
  background-color: #05A4DC;
  color: #fff;
  -webkit-box-shadow: inset 0 0 0 0 #60D3FB;
  -moz-box-shadow: inset 0 0 0 0 #60D3FB;
  box-shadow: inset 0 0 0 0 #60D3FB; 
}



/*-------------------
----MAIN CONTENT ---------------------------------------------------------------
---------------------*/
#main_content { }
#main_content > .header {}

@media (min-width: 1200px) {
  #main_content > .header.container-fluid {
    width: 85%;
    margin: 0 auto;
  }
}

input.tbox {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 20px #E4E9C9;
  -moz-box-shadow: inset 0 0 20px #E4E9C9;
  box-shadow: inset 0 0 20px #E4E9C9;
}

#main_content > .main-content-top { }

@media (min-width: 1200px) {
  #main_content > .main-content-top.container-fluid {
    width: 85%;
    margin: 0 auto;
  }
}

#main_content > .page-content { }

@media (min-width: 1200px) {
  #main_content > .page-content > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #main_content > .page-content > .container-fluid > .page-content-inner {
    width: 85%;
    margin: 0 auto;
  }
}


/*-------------------
----CAPTION ON SIDEBAR RIGHT ----------------------------------------------------
---------------------*/
#main_content .main-content-top-image {
  max-height: 500px;
}
#main_content .main-content-top-image img {
  max-height: 500px;
  -moz-border-radius: 0px;
  -khtml-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  filter: alpha(opacity=50);  /* IE 6-8 */
  -moz-opacity: 0.5;          /* Firefox < 0.9 */
  -khtml-opacity: 0.5;        /* Safari 1.x */
  opacity: 0.5;               /* Modern browsers */
}
/* Page Caption on Header Image */
#main_content .page-caption {
  font-family: "Bebas Neue", Sans-serif;
  letter-spacing: 1px;
}

@media (max-width: 1199.98px) {
  #main_content .page-caption {
    font-size: 2rem;
  }
}


/*
#main_content div.icon {
  height: 1.8rem;
  margin: 25px auto 10px;
  padding: 0;
  border: 0;
  border-top: 6px solid #E78728;
  text-align: center;
}

#main_content div.icon:after {
  font-family: "Font Awesome 6 Free";
  content: "\f45d";
  font-weight: 900;
  color: #E78728;
  display: inline-block;
  position: relative;
  top: -1.8rem;
  padding: 0 1rem;
  font-size: 2.3rem;
  background-color: #F2FBFF; // Must Match Page Background
}

#main_content h5.breadcrumb {
  font-family: "Jost", sans-serif;
  margin-top: 0;
  margin: 0 0 .5rem 0;
}
#main_content h5.breadcrumb a {
  color: #3A474F;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
#main_content h5.breadcrumb a:hover {
  color: #E78728;
}
#main_content h5.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 6 Free";
  content: "\f111";
  font-weight: 900;
  display: block;
  font-size: 0.5rem;
  color: #b4bec2;
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
}
*/


/*-------------------
----FOOTER ------
---------------------*/
#footer-top { }

@media (min-width: 1200px) {
  #footer-top > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #footer-top > .container-fluid > .footer-top-inner {
    width: 85%;
    margin: 0 auto;
  }
}

#footer { }
#footer .footer-inner { 
  background-image: url(images/footer-bg-image-1.jpg), linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  background-blend-mode: overlay;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 1200px) {
  #footer > .container-fluid {
    width: 85%;
    margin: 0 auto;
  }
  #footer > .container-fluid > .footer-inner > .footer-inner-in {
    width: 85%;
    margin: 0 auto;
  }
}

#footer .footer-contact,
#footer .footer-open,
#footer .footer-navigation,
#footer .footer-navigation-alt {
  // background-color: rgba(255, 255, 255, 0.2);
}
#footer .glassmorphic {     
  /* Translucent color for background with shadow */  
  background: rgba( 255, 255, 255, 0.15 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); 
  /* Add blur effect to background*/
  backdrop-filter: blur( 4.0px );
  -webkit-backdrop-filter: blur( 4.0px );
  /* Rounded corners */
  border-radius: 10px;    
  /* Thin and light border */
  border: 1px solid rgba( 255, 255, 255, 0.18 ); 
}

#footer .footer-contact-title,
#footer .footer-open-title,
#footer .footer-navigation-title,
#footer .footer-navigation-alt-title { 
  font-family: "Bebas Neue", Sans-serif !important;
  color: rgba(181, 214, 23, 1) !important;
}
#footer .footer-contact-title::after,
#footer .footer-open-title::after,
#footer .footer-navigation-title::after,
#footer .footer-navigation-alt-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  text-align: center;
  margin: 15px auto 0 auto;
}
#footer .footer-contact-body,
#footer .footer-open-body,
#footer .footer-navigation-body,
#footer .footer-navigation-alt-body { }

/* Footer social icon */
#footer .footer-contact-body a.social-icon {
  display: inline-block;
  width: 36px;
  height: 36px; 
  color: #fff;
  font-size: 1rem;
  text-align: center;
  background-color: #06A3DA;
  margin-right: .5rem !important;
  padding: .375rem .75rem;
  border-color: #06A3DA;
  -webkit-box-shadow: inset 0 0 0 50px transparent;
  -moz-box-shadow: inset 0 0 0 50px transparent;
  box-shadow: inset 0 0 0 50px transparent;
  -moz-border-radius: 2px;
  -khtml-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
#footer .footer-contact-body a.social-icon:hover {
  background-color: #05A4DC;
  color: #fff;
  -webkit-box-shadow: inset 0 0 0 0 #60D3FB;
  -moz-box-shadow: inset 0 0 0 0 #60D3FB;
  box-shadow: inset 0 0 0 0 #60D3FB;
}


/* Footer SITE-Menus */
#footer .footer-navigation-body ul.navbar-nav,
#footer .footer-navigation-alt-body ul.navbar-nav { }
#footer .footer-navigation-body ul.navbar-nav > li,
#footer .footer-navigation-alt-body ul.navbar-nav > li { }
#footer .footer-navigation-body ul.navbar-nav > li > a,
#footer .footer-navigation-alt-body ul.navbar-nav > li > a {
  font-family: "Sora",sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 5px 0;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
#footer .footer-navigation-body ul.navbar-nav > li > a:hover,
#footer .footer-navigation-alt-body ul.navbar-nav > li > a:hover {
  color: rgba(181, 214, 23, 1);
}
#footer .footer-navigation-body ul.navbar-nav > li > a:before,
#footer .footer-navigation-alt-body ul.navbar-nav > li > a:before {
  position: relative;
  font-family: "Font Awesome 6 Free";
  content: "\f178";
  font-weight: 900;
  color: #fff;
  margin-right: 10px;
}

/* FOOTER BOTTOM */
#footer .footer-dissclaimer {
  font-family: "Jost", sans-serif;
}

#footer-top .dhssportcom-brand-image {
  height: auto;
  max-width: 200px;
}




/*-------------------
----NEWS - DEFAULT ------
---------------------*/
.default-news { }
.default-news .default-news-item { }
.default-news-item .default-news-image-main { 
  background-color: #000; 
}
.default-news-item .default-news-image-main img {
    
}
.default-news-item:hover .default-news-image-main img {
  filter: alpha(opacity=50);  /* IE 6-8 */
  -moz-opacity: 0.5;          /* Firefox < 0.9 */
  -khtml-opacity: 0.5;        /* Safari 1.x */
  opacity: 0.5;               /* Modern browsers */
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s; 
}
.default-news-item .default-news-text { }
.default-news-item .default-news-title {
  font-family: "Bebas Neue",sans-serif;
  // font-size: 1.5rem;
  font-weight: 700;
  color: #414141;
  line-height: 1.2;
  letter-spacing: 1px;
}
.default-news-item .default-news-date {
  font-family: "Jost";
  color: #909090;
  font-size: 13px;
}
.default-news-item .default-news-date::before {
  content: "";
  width: 80px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
}
.default-news-summary {
  font-family: "Sora", sans-serif;
  color: #6B6A75;
  font-size: 1rem;
  font-weight: 400;
  height: 72px;
}
.default-item-read-more { 
  position: relative;
}
.default-item-read-more a {
  display: inline-block;
  position: relative;
  font-family: "Jost",sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;  
  padding: 4px 25px;
  -o-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background: #ff5744;
  background: -webkit-linear-gradient(to left, #ffa844, #ff5744); 
  background: -moz-linear-gradient(to left, #ffa844, #ff5744); 
  background: -ms-linear-gradient(to left, #ffa844, #ff5744); 
  background: -o-linear-gradient(to left, #ffa844, #ff5744); 
  background: linear-gradient(to left, #ffa844, #ff5744);  
}
.default-item-read-more a:hover {
  color: #fff;
}
.default-item-read-more a:after {
  font-family: "Font Awesome 6 Free";
  content: "\f178";
  font-weight: 900;
  display: inline-block;
  font-size: 1rem;
  margin-left: 6px;
  filter: alpha(opacity=0);  /* IE 6-8 */
  -moz-opacity: 0;          /* Firefox < 0.9 */
  -khtml-opacity: 0;        /* Safari 1.x */
  opacity: 0;               /* Modern browsers */
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.default-item-read-more a:hover:after {
  filter: alpha(opacity=100);  /* IE 6-8 */
  -moz-opacity: 1;          /* Firefox < 0.9 */
  -khtml-opacity: 1;        /* Safari 1.x */
  opacity: 1;               /* Modern browsers */
  right: 15px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.default-item-read-more a span {
  left: 0;
  position: relative;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.default-item-read-more a:hover span {
  left: -12px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.default-item-read-more:after{
  content:" ";
  height: 1px;
  width: auto;
  background: #e8e8e8;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 100px;
}
.default-item-bottom {
  font-size: 13px;
  text-transform: capitalize;
}


/* Default item order */
@media (min-width: 1200px) {
  .default-news-item:nth-child(odd) .col-xl-5 {
    order: -1 !important; /* column left */
  }
  .default-news-item:nth-child(odd) .col-xl-7 {
    order: 6 !important; /* column right */ 
  }
  .default-news-item:nth-child(even) .col-xl-5 {
    order: 6 !important; /* column right */
  }
  .default-news-item:nth-child(even) .col-xl-7 {
    order: -1 !important; /* column left */ 
  }
}


/* Background color of news-box */
.default-news-item:nth-child(odd) {
  background-image: -webkit-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -moz-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -o-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.default-news-item:nth-child(even) {
  background-image: -webkit-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: -moz-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: -o-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}

.default-news-item:nth-child(odd) .default-news-image-main {
  margin-left: 1rem;
  margin-top: 1rem;
  max-height: 360px;
}
.default-news-item:nth-child(odd) .default-news-image-main img {
  max-height: 360px;
  -webkit-box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);  
}
.default-news-item:nth-child(even) .default-news-image-main {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.default-news-item:nth-child(even) .default-news-image-main img {
   max-height: 360px;
  -webkit-box-shadow: 30px 30px 0px -15px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -15px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -15px rgba(181, 214, 23, 1);  
}



/* News Items Image inside borders - News page */
.default-news-item:nth-child(odd) .default-news-image-main>p,
.default-news-item:nth-child(even) .default-news-image-main>p {
  margin: 0;
}
.default-news-item:nth-child(odd) .default-news-image-main:before {
    position: absolute;
    width: 60px; 
    height: 50px;
    border-color: #E78728; 
    border-style: solid;
    content: ' ';
    top: 10px;
    left: 10px;
    border-width: 4px 0 0 4px;
    z-index: 1;
}
.default-news-item:nth-child(even) .default-news-image-main>:last-child:before {
    position: absolute;
    width: 60px; 
    height: 50px;
    border-color: #E78728; 
    border-style: solid;
    content: ' ';
    bottom: 10px;
    right: 10px;     
    border-width: 0 4px 4px 0;
    z-index: 1;
}


/*-------------------
----NEWS EXTEND -DEFAULT ------
---------------------*/
.view-item { 
  background-image: -webkit-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -moz-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -o-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.view-item .view-item-image { 
  height: 400px;
  max-height: 400px; 
  background-size: cover;
  background-origin: border-box;
  border: 20px solid rgba(245, 245, 245, 0.5);
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);
}

/*
.view-item .view-item-image img { 
  max-height: 400px;
  -webkit-box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -15px rgba(181, 214, 23, 1);
}
*/

.view-item .view-item-title { 
  font-family: "Bebas Neue",sans-serif;
  font-weight: 700;
  color: #414141;
  line-height: 1.2;
  letter-spacing: 1px;
}
.view-item .view-item-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
}
.view-item .view-item-date { 
  font-family: "Jost";
  color: #909090;
  font-size: 16px;
}
.view-item .lead.view-item-summary {  
  font-family: "Jost";  
}
.view-item .view-item-body { 
}
.view-item .view-item-content-images { }
.view-item .view-item-content-images img.view-item-content-image { 
  -moz-border-radius: 0 !important;
  -khtml-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}
.view-item .view-item-extended { 
}
.view-item .view-item-videos { }
.view-item blockquote {
  position: relative;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-style:italic;
  padding: 30px 0;
  width: 100%;
  z-index: 1;
  margin: 20px 0;
  border-top: 2px solid #E78728;
  border-bottom: 2px solid #E78728;
}
/* Blockquote right double quotes */
.view-item blockquote:after {
  position: absolute;
  content: '"';
  color: #E78728;
  font-size: 10rem;
  line-height: 0;
  bottom: -43px;
  right: 30px;
}

/* view-item Tags */
.view-item .view-item-tags { }
.view-item .view-item-tags a.news-tag { 
  display: inline-block;
  padding: 8px 12px; 
  -o-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  color: #a4a4a4;
  letter-spacing: 1px;
}
.view-item .view-item-tags a.news-tag:before {
  font-family: "Font Awesome 6 Free";
  content: "\23";
  font-weight: 900;
  display: inline-block;
  margin-right: 3px;
}
.view-item .view-item-tags a.news-tag:hover {
  color: rgba(181, 214, 23, 1);
}

/* View Item Options */
.view-item .view-item-options { 
}
.view-item .view-item-options .social-share-icons { }
.view-item .view-item-options .social-share-icons > .btn-group { 
  position: relative;
  -moz-border-radius: 0 !important;
  -khtml-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  display: inline-block !important;
}
.view-item .view-item-options .social-share-icons > .btn-group a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  border: none;
  -moz-border-radius: unset;
  -khtml-border-radius: unset;
  -webkit-border-radius: unset;
  border-radius: unset;
  padding: 0;
  -o-transition: none;
  -ms-transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  transition: none;
  background: none;
}
.view-item .view-item-options .social-share-icons > .btn-group a::before {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  content: " ";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: block;
  background: linear-gradient(45deg, #ffa844, #ff5744);
  transition: all 265ms ease-out;
}
.view-item .view-item-options .social-share-icons > .btn-group a:hover:before {
  transform: scale(0);
  transition: all 265ms ease-in;
}
.view-item .view-item-options .social-share-icons > .btn-group a i {
  width: 20px;
  height: 20px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  transition: all 265ms ease-out;
}
.view-item .view-item-options .social-share-icons > .btn-group a:hover i {
  transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  color: #E78728;
  transition: all 265ms ease-in;
}
.view-item .view-item-options .social-share-icons > .btn-group a:hover { 
  color: #0582ae; 
}

/* NEWS VIEW PAGINATION */
#view-item-pagination { }
#view-item-pagination .view-item-pagination { 
  /* background-color: #F6F5F9; */
}
#view-item-pagination .view-item-pagination ul.view-item-pagination {
  padding-left: 0;
}
#view-item-pagination ul.view-item-pagination > li.page-item {
  list-style: none;
}
#view-item-pagination ul.view-item-pagination > li.page-item > a {
  font-family: "Jost", sans-serif;
  /* font-weight: 500; */
  text-decoration: none;
  list-style: none;
}

@media (max-width: 1199.98px) {
  #view-item-pagination ul.view-item-pagination > li.page-item,
  #view-item-pagination ul.view-item-pagination > li.page-item a.btn {
    font-size: 0.875rem !important;
  }
}



/* RELEATED NEWS ITEMS */
.related-news-box { }
.related-news-box .related-news-caption {
  font-family: "Bebas Neue",sans-serif;
  letter-spacing: 1px;
}
.related-news-items { }
.related-item { 
}
.related-item .related-news-image { 
  
}
.related-item .related-news-image a {
  display: block;
  overflow: hidden;
}
.related-item .related-news-image img { 
  object-fit: cover;
  o-transition: transform 0.6s ease-in-out 0s;
  -ms-transition: transform 0.6s ease-in-out 0s;
  -moz-transition: transform 0.6s ease-in-out 0s;
  -webkit-transition: transform 0.6s ease-in-out 0s;
  transition: transform 0.6s ease-in-out 0s;
}
.related-item:hover .related-news-image img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s;
}
.related-item .related-news-title { 
  background: #fff;
  padding: 20px 30px;
  color: #000;
  position: relative;
  bottom: 40px;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/*-------------------
----RIGHTSIDE ------
---------------------*/

/*-------------------
----SIDE-MENU - SEARCH ------
---------------------*/
.search-menu {
  margin: 0 0 3rem 0;
  padding: 3rem 30px 0 30px;
}
.search-menu .form-control.search {
  padding: 1rem;
  -moz-border-top-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
  -khtml-border-top-right-radius: 0;
  -khtml-border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search-menu button.btn {
  padding: 1.2rem 1.5rem;
  -moz-border-top-left-radius: 0;
  -moz-border-bottom-left-radius: 0;
  -khtml-border-top-left-radius: 0;
  -khtml-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.search-menu button.btn svg {
  line-height: 1.5;
  font-size: 1rem;
}


/*-------------------
----SIDE-MENUBOX ------
---------------------*/
.sidebar-menus { }

.side-menubox {
  background: #F8FBE8;
  color: #283D3B;
  -moz-border-radius: 20px;
  -khtml-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.side-menubox .side-menubox-title {
  font-family: "Bebas Neue",sans-serif;
  color: #E78728;
  letter-spacing: 1px;
}
.side-menubox h4.side-menubox-title span.inline-text span.btn-group {
  margin: 4px 0 0 10px;
}
.side-menubox h4.side-menubox-title span.inline-text a.btn {
  margin: 0 2px;
  padding: 3px 6px;
  line-height: 1;
}
.side-menubox .side-menubox-content {
  font-size: 0.9rem;
}
.side-menubox .side-menubox-content .cpage-menu > img {
  width: 100%;
  height: auto;
}
.side-menubox .side-menu-title-divider {
  position: relative;
  width: 100px;
  height: 4px;
  background-color: #E78728;
  margin-left: 30px;
}
.side-menubox .side-menu-title-divider:before {
  content: "";
  position: absolute;
  color: #E78728;
  left: -27px;
  top: 0;
  display: inline-block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #E78728;
  -webkit-box-shadow: 9px 0 0 0 currentColor,18px 0 0 0 currentColor;
  -moz-box-shadow: 9px 0 0 0 currentColor,18px 0 0 0 currentColor;
  box-shadow: 9px 0 0 0 currentColor,18px 0 0 0 currentColor;
}
.side-menubox textarea.tbox {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 20px #E4E9C9;
  -moz-box-shadow: inset 0 0 20px #E4E9C9;
  box-shadow: inset 0 0 20px #E4E9C9;
}


/*-------------------
----SIDE-MENUBOX LIST GROUP ------
---------------------*/
.side-menubox .side-menubox-content ul.list-group {
  background-color: transparent; 
  border: none;
}
.side-menubox .side-menubox-content ul.list-group > li { 
  border: none;
  background-color: transparent;
  padding: 0 0 5px 0;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
.side-menubox .side-menubox-content ul.list-group > li:hover {
  
}
.side-menubox .side-menubox-content ul.list-group > li a { 
  font-family: "Sora",sans-serif;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
.side-menubox .side-menubox-content ul.list-group > li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}
.side-menubox .side-menubox-content ul.list-group > li span.badge {
  background-color: #ff5744 !important;
  color: #fff;
}


/*-------------------
----BOTTOM-OF-MAIN-CONTENT MENUBOX ------
---------------------*/
.bottom-of-main-menubox-outer {
  background-image: -webkit-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: -moz-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: -o-linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  background-image: linear-gradient(90deg, #FFF8DC 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.bottom-of-main-menubox {}
.bottom-of-main-menubox-title {
  font-family: "Bebas Neue",sans-serif;
  color: rgba(181, 214, 23, 1);
  letter-spacing: 1px;
}
.bottom-of-main-menubox-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  text-align: center;
  margin: 15px auto 0 auto;
}
.bottom-of-main-menubox-content {
  font-size: 0.9rem;
}


/*-------------------
----NEWS MENU LATEST ------
---------------------*/
.news-menu-latest {  }
.news-menu-latest-img {
  float: left;
  width: 90px;
  overflow: hidden;
  background-color: #000;
}
.news-menu-latest-img a {

}
.news-menu-latest-img a img {
  width: 100%;
  height: auto;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.news-menu-latest a img {  
  -o-transition: transform 0.6s ease-in-out 0s;
  -ms-transition: transform 0.6s ease-in-out 0s;
  -moz-transition: transform 0.6s ease-in-out 0s;
  -webkit-transition: transform 0.6s ease-in-out 0s;
  transition: transform 0.6s ease-in-out 0s;
}
.news-menu-latest:hover a img { 
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s;
}
.news-menu-latest-title {
  font-family: "Jost",sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #091E3E;
  line-height: 1.2;
  padding: 5px 5px 5px 110px;
}
.news-menu-latest-date {
  font-family: "Jost",sans-serif;
  line-height: 1.7;
  font-weight: 400;
  font-size: .75em;
  color: #7f8b92;
}


/*-------------------
----TAGCLOUD MENU ------
---------------------*/
.tagcloud-menu { }
.tagcloud-menu a span[class*='size'] {
  display: inline-block;
  margin: 0.2rem;
  padding: 0 12px; !important; 
  border: none;
  -o-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  -moz-border-radius: 16px !important;
  -khtml-border-radius: 16px !important;
  -webkit-border-radius: 16px !important;
  border-radius: 16px !important;
  height: 32px;
  line-height: 32px;
}

.tagcloud-menu a:hover,
.tagcloud-menu a:focus {
  color: #0582ae;
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.tagcloud-menu a span.size9 {
  background-color: #00c851 !important;
}
.tagcloud-menu a span.size8 {
  background-color: #a6c !important;
}
.tagcloud-menu a span.size7 {
  background-color: #ef5350 !important;
}
.tagcloud-menu a span.size6 {
  background-color: #42a5f5 !important;
}
.tagcloud-menu a span.size5 {
  background-color: #3949ab !important;
}
.tagcloud-menu a span.size4 {
  background-color: #ffb74d !important;
}
.tagcloud-menu a span.size3 {
  background-color: #59698d !important;
}
.tagcloud-menu a span.size2 {
  background-color: #ff7043 !important;
}
.tagcloud-menu a span.size1 {
  background-color: #42a5f5 !important;
}
.tagcloud-menu a span.size0 {
  background-color: #ef5350 !important;
}



/*-------------------
----BOOKED4US - ONLINE ASZTALFOGLALĂS ------
---------------------*/


/*************************************
*** CUSTOM PAGES - CPAGE *****************
**************************************/
.default-cpage-container { }
.default-cpage-item {
  background-image: -webkit-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -moz-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -o-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.default-cpage-item .default-cpage-item-image {
  // height: 500px;
  max-height: 500px;
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}
.default-cpage-item .default-cpage-item-image:before, 
.default-cpage-item .default-cpage-item-image:after, 
.default-cpage-item .default-cpage-item-image>:last-child:before, 
.default-cpage-item .default-cpage-item-image>:last-child:after {
    position: absolute;
    width: 60px; 
    height: 50px;
    border-color: rgba(181, 214, 23, 1); 
    border-style: solid;
    content: ' ';
}
.default-cpage-item .default-cpage-item-image:before {
    top: 10px;
    left: 10px;
    border-width: 4px 0 0 4px;
}
.default-cpage-item .default-cpage-item-image:after {
    top: 10px;
    right: 10px;
    border-width: 4px 4px 0 0;
}
.default-cpage-item .default-cpage-item-image>:last-child:before {
    bottom: 10px;
    right: 10px;     
    border-width: 0 4px 4px 0;
}
.default-cpage-item .default-cpage-item-image>:last-child:after {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 4px 4px;
}
.default-cpage-item .default-cpage-item-image>p {
  margin: 0;
}

.default-cpage-item .default-cpage-title { 
  font-family: "Bebas Neue",sans-serif;
  font-weight: 700;
  color: #414141;
  line-height: 1.2;
  letter-spacing: 1px;
}
.default-cpage-item .default-cpage-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
}
.default-cpage-item .default-cpage-date {
  font-family: "Jost";
  color: #909090;
  font-size: 16px;
}
.default-cpage-item .default-cpage-body { }
.default-cpage-item .default-cpage-body img { 
  display: block;
  overflow: hidden;
  margin: 20px auto;
  width: 90% !important;
  height: auto; 
  -moz-border-radius: 0px !important;
  -khtml-border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  -webkit-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: 30px 30px 0px -20px rgba(181, 214, 23, 1);
}


/*
.default-cpage-item .default-cpage-mainimage { }
.default-cpage-item .default-cpage-mainimage img {  }
.default-cpage-item .default-cpage-author { }
.default-cpage-item .default-cpage-date { }

.default-cpage-item .default-cpage-rating {  }
.default-cpage-item .default-cpage-rating .e-rate-page { 
  display: inline-block; 
  width: auto !important;
  margin: 0 15px;
}
.default-cpage-item .default-cpage-rating .e-rate-page img { display: inline-block; }
.default-cpage-item .default-cpage-rating .e-rate-page img:first-child { padding-left: 5px; }
.default-cpage-item .default-cpage-rating .e-rate-votes-page { 
  display: inline-block; 
  width: auto !important;
}
*/

/* view-item Tags */
.default-cpage-item .default-cpage-item-tags { }
.default-cpage-item .default-cpage-item-tags a.cpage-tag { 
  display: inline-block;
  padding: 8px 12px; 
  -o-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  color: #a4a4a4;
  letter-spacing: 1px;
}
.default-cpage-item .default-cpage-item-tags a.cpage-tag:before {
  font-family: "Font Awesome 6 Free";
  content: "\23";
  font-weight: 900;
  display: inline-block;
  margin-right: 3px;
}
.default-cpage-item .default-cpage-item-tags a.cpage-tag:hover {
  color: rgba(181, 214, 23, 1);
}

/* SOCIAL SHARE - CPAGE */
.default-cpage-item .default-cpage-item-options { 
  padding: 15px 0;
}
.default-cpage-item .default-cpage-item-options .social-share-icons { }
.default-cpage-item .default-cpage-item-options .social-share-icons > .btn-group { 
  position: relative;
  -moz-border-radius: 0 !important;
  -khtml-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
  display: inline-block !important;
}
.default-cpage-item .default-cpage-item-options .social-share-icons > .btn-group a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  border: none;
  -moz-border-radius: unset;
  -khtml-border-radius: unset;
  -webkit-border-radius: unset;
  border-radius: unset;
  padding: 0;
  -o-transition: none;
  -ms-transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  transition: none;
  background: none;
}
.default-cpage-item .default-cpage-item-options .social-share-icons > .btn-group a::before {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  content: " ";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: block;
  background: linear-gradient(45deg, #ffa844, #ff5744);
  transition: all 265ms ease-out;
}
.default-cpage-item .default-cpage-item-options .social-share-icons > .btn-group a:hover:before {
  transform: scale(0);
  transition: all 265ms ease-in;
}
.default-cpage-item .default-cpage-item-options .social-share-icons > .btn-group a i {
  width: 20px;
  height: 20px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  transition: all 265ms ease-out;
}
.default-cpage-item .default-cpage-item-options .social-share-icons > .btn-group a:hover i {
  transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  color: #E78728;
  transition: all 265ms ease-in;
}
.default-cpage-item .default-cpage-item-options .social-share-icons > .btn-group a:hover { 
  color: #0582ae; 
}


/* RELEATED CPAGE - CPAGE */
.related-cpage-box { }
.related-cpage-box .related-cpage-caption { 
  font-family: "Bebas Neue",sans-serif;
}
.related-cpage-items { }
.related-cpage-item { }
.related-cpage-item .related-cpage-image { }
.related-cpage-item .related-cpage-image a {
  display: block;
  overflow: hidden;
}
.related-cpage-item .related-cpage-image img {
  object-fit: cover;
  o-transition: transform 0.6s ease-in-out 0s;
  -ms-transition: transform 0.6s ease-in-out 0s;
  -moz-transition: transform 0.6s ease-in-out 0s;
  -webkit-transition: transform 0.6s ease-in-out 0s;
  transition: transform 0.6s ease-in-out 0s;
}
.related-cpage-item:hover .related-cpage-image img { 
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s;
}
.related-cpage-item .related-cpage-title { 
  background: #fff;
  padding: 20px 30px;
  color: #000;
  position: relative;
  bottom: 40px;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 0px;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* COMMENT CPAGE - CPAGE */
.comments-container-outer {
  background-image: -webkit-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -moz-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -o-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.comments-container-outer ul {
  padding-left: 0;
}
.comments-container-outer .comment-container-caption {
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}
.comments-container-outer .comment-container-caption::before, 
.comments-container-outer .comment-container-caption::after {
  display: inline-block;
  content: "";
  border-top: .3rem solid #E78728;
  width: 4rem;
  margin: 0 1rem;
  transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .comments-container-outer .comment-container-caption {
    font-size: 2rem !important;
  }
  .comments-container-outer .comment-container-caption::before,
  .comments-container-outer .comment-container-caption::after {
    width: 0rem;
  }
}


/*************************************
*** CUSTOM PAGES - CPAGE - CHAPTER LIST PAGES *****************
**************************************/
/*
ul.page-pages-list { }
ul.page-pages-list li.page-pages-list-item { 
  font-family: "Jost", sans-serif;
  background-color: #f0f4dc !important;
}
ul.page-pages-list li.page-pages-list-item img { 
  width: 25px;
  heigth: 25px;
  padding-bottom: 0.4rem;
}
*/

.page-pages-list-breadcrumb {
  background-color: #f0f4dc !important;
  border-radius: 6px;
}
.page-pages-list-breadcrumb .page-pages-list-breadcrumb-inner {

}
.page-pages-list-breadcrumb .page-pages-list-breadcrumb-inner ul {
  margin-bottom: 0px;
}
.page-pages-list .page-pages-list-item-outer {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
.page-pages-list .page-pages-list-item-top { }
.page-pages-list .page-pages-list-item-top .title {
  font-family: "Jost", sans-serif;
  color: #2a2a2a;
}
.page-pages-list .page-pages-list-item-image {
  position: relative;
  overflow: hidden;
}
.page-pages-list .page-pages-list-item-image img { 
  height: 210px !important;
}
.page-pages-list .page-pages-list-item-image:hover img {
  filter: alpha(opacity=50);  /* IE 6-8 */
  -moz-opacity: 0.5;          /* Firefox < 0.9 */
  -khtml-opacity: 0.5;        /* Safari 1.x */
  opacity: 0.5;               /* Modern browsers */
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s; 
}
.page-pages-list .page-pages-list-item-button {
  margin-top: 30px;
}


/*************************************
*** CUSTOM PAGES - CPAGE - CHAPTER LIST CHAPTERS *****************
**************************************/
.page-chapters-list {}
.page-chapters-list .chapter-title {
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}
.page-chapters-list .chapter-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 0px;
  display: block;
  margin: 0;
}



/*************************************
*** CUSTOM PAGES - CPAGE - CHAPTER LIST ALL *****************
**************************************/
ul.page-chapters-list { }
ul.page-chapters-list li.page-chapters-list-item { 
  font-family: "Jost", sans-serif;
  background-color: rgba(255, 255, 255, 0.39);
}



/*************************************
*** CONTACT *****************
**************************************/
#contactInfo { 
  background-image: -webkit-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -moz-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -o-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
#contactInfo .pagename { 
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}
#contactInfo .pagename::before, 
#contactInfo .pagename::after {
  display: inline-block;
  content: "";
  border-top: .3rem solid #E78728;
  width: 4rem;
  margin: 0 1rem;
  transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  #contactInfo .pagename {
    font-size: 2rem !important;
  }
  #contactInfo .pagename::before,
  #contactInfo .pagename::after {
    width: 0rem;
    margin: 0;
  }
}

#contactInfo-innerlayout {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}

@media (max-width: 1199.98px) {
  #contactInfo-innerlayout {
    padding: 10px;
  }
}

#contactInfo-innerlayout .my-company { 
  color: #E78728;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}
#contactInfo-innerlayout .my-company::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 15px auto 0 auto;
}
#contactInfo-innerlayout .custom-message { }
#contactInfo-innerlayout .sitecontact-address,
#contactInfo-innerlayout .sitecontact-phone,
#contactInfo-innerlayout .sitecontact-email { 
  position: relative;
}
#contactInfo-innerlayout .sitecontact-address-icon,
#contactInfo-innerlayout .sitecontact-phone-icon,
#contactInfo-innerlayout .sitecontact-email-icon {
  height: 60px;
  width: 60px;
  background-color: rgba(181, 214, 23, 1);
}
#contactInfo-innerlayout .sitecontact-address svg,
#contactInfo-innerlayout .sitecontact-phone svg,
#contactInfo-innerlayout .sitecontact-email svg {
  font-size: 2rem;
  color: #fff;
}
#contactInfo-innerlayout .lan { }
#contactInfo-innerlayout .data { }

/* CONTACT FORM */
#contactForm { } 
#contactForm  .control-group.form-group label,
#contactForm  .form-group label {
  font-size: .85rem;
}
#contactForm  .control-group.form-group input,
#contactForm  .control-group.form-group textarea {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 20px #E4E9C9;
  -moz-box-shadow: inset 0 0 20px #E4E9C9;
  box-shadow: inset 0 0 20px #E4E9C9;
  padding: 0.5rem 1.5rem !important;
  padding-left: 1.5rem !important;
  margin: 10px 0 !important;
  -moz-border-radius: 0 !important;
  -khtml-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
}


/* CONTACT MAP STYLE */
#contactInfo .contact-map-wrap {
  overflow: hidden;
  height: 800px;
  margin: 0;
}


/*------------------------------------------
	GALLERY STYLE  
--------------------------------------------*/
/* Gallery category */
.gallery-cat { }
.gallery-cat .gallery-cat-outer {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
.gallery-cat .gallery-cat-top { 
  display: flex;
  margin-bottom: 30px;
}
.gallery-cat .gallery-cat-top .icon { 
  background-color: rgba(181, 214, 23, 0.1);
  width: 75px;
  height: 75px;
  display: inline-block;
  text-align: center;
  line-height: 75px;
  border-radius: 10px;
  margin-right: 20px;
}
.gallery-cat .gallery-cat-top .icon:before {
font-family: "Font Awesome 6 Free";
  content: "\f03e";
  font-weight: 900;
  display: inline-block;
  font-size: 3rem;
  text-align: center;
  color: rgba(181, 214, 23, 1);
}
.gallery-cat .gallery-cat-top .right { 
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
.gallery-cat .gallery-cat-top h4.title { 
  font-size: 20px;
  margin-top: 5px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2a2a2a;
}
.gallery-cat .gallery-cat-top .right .gallery-cat-count {
color: #afafaf;
  font-weight: 400;
}
.gallery-cat .gallery-cat-top .right .gallery-cat-count em {
font-style: normal;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 8px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: rgba(181, 214, 23, 1);
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.06);
  margin-right: 10px;
}
.gallery-cat .gallery-cat-image { 
  position: relative;
  overflow: hidden;
}
.gallery-cat .gallery-cat-image img { }
.gallery-cat .gallery-cat-image:hover img {
  filter: alpha(opacity=50);  /* IE 6-8 */
  -moz-opacity: 0.5;          /* Firefox < 0.9 */
  -khtml-opacity: 0.5;        /* Safari 1.x */
  opacity: 0.5;               /* Modern browsers */
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s; 
}
.gallery-cat .gallery-cat-button {
  margin-top: 30px;
}

/*
.gallery-cat-item { 
  background-color: #000;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%; 
}
.gallery-cat-item img {      
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: top;
}
.gallery-cat-item:hover > img {
  opacity: .6;
  -o-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.gallery-cat-item .gallery-cat-header {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 0;
}
.gallery-cat-item .gallery-cat-header:before {
  background-color: #ffffff;
  bottom: -5px;
  content: '';
  left: 0;
  position: absolute;
  right: 100%;
  top: -5px;
  z-index: -1;
}
.gallery-cat-item:hover .gallery-cat-header:before {
  right: -5px;
}
.gallery-cat-item .gallery-cat-header h3 {
  background-color: #06a3da;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  padding: 5px 10px;
  text-transform: uppercase;
}
.gallery-cat-item *,
.gallery-cat-item *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
*/


/* Gallery images */
#gallery {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#gallery .gallery-title {
color: #E78728;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}
#gallery .gallery-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 15px auto 0 auto;
}
#gallery .gallery-image-outer {
  -webkit-box-shadow: 0px 15px 10px -5px rgba(0,0,0,0.2), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 10px -5px rgba(0,0,0,0.2), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 10px -5px rgba(0,0,0,0.2), inset 0 -16px 90px #E4E9C9;
}
#gallery .gallery-image img {
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  -moz-transition: opacity 0.35s; 
  transition: opacity 0.35s;
}
#gallery .gallery-image .gallery-image-caption {
    padding: 2em;   
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
	backface-visibility: hidden;
}
#gallery .gallery-image .gallery-image-caption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 2px solid #fff;
	box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
	content: '';
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    -moz-transition: opacity 0.35s, -moz-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.4,1.4,1);
    -moz-transform: scale3d(1.4,1.4,1); 
	transform: scale3d(1.4,1.4,1);
}
#gallery .gallery-image .gallery-image-caption > a {	
  text-indent: 200%;
  font-size: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

#gallery .gallery-image h2 {
  word-spacing: -0.15em;
  font-size: 1.3em;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  -moz-transition: opacity 0.35s, -moz-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5); 
  transform: scale(1.5);
}
#gallery .gallery-image:hover .gallery-image-caption::before,
#gallery .gallery-image:hover h2 {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-transform: scale3d(1,1,1);
  -moz-transform: scale3d(1,1,1);
  -ms-transform: scale3d(1,1,1);
  transform: scale3d(1,1,1);
}

#gallery .gallery-image:hover .gallery-image-caption { background-color: rgba(58,52,42,0); }
#gallery .gallery-image:hover img { opacity: 0.4; }

#gallery .gallery-image h2 svg {
  height: 2em;
}


/* Gallery list next/prev */
.gallery-list-nextprev { }
.gallery-list-nextprev .nextprev.form-group { 
  width: 50%;
  margin: 0 auto 1.5rem auto;
}

@media (max-width: 1199.98px) {
  .gallery-list-nextprev .nextprev.form-group {
    width: 100%;
  }
}

.gallery-list-nextprev .nextprev.form-group > a.btn { 
}

/* Gallery list back */
.gallery-list-back { }
.gallery-list-back a.btn { }


/* Gallery Slideshow */
#gallery-slideshow-wrapper { 
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  width: 100% !important;
  max-width: 100%;
  height: 200px !important;
  overflow: hidden;
  background: transparent !important;
  margin: 0 auto !important;
}
#gallery-slideshow-content { 
  width: 100% !important;
  height: 200px !important;
  overflow: hidden;
}
#gallery-slideshow-content div[id*="gallery-item-"],
#gallery-slideshow-content div[id^="gallery-item-"] { 
  width: 100%;
  padding: 0;
  height: 200px; 
}
#gallery-slideshow-content div[id*="gallery-item-"] .gallery-slide-item,
#gallery-slideshow-content div[id^="gallery-item-"] .gallery-slide-item {
  margin-right: 0;
  display: inline-block;
  width: 100% !important;
}
#gallery-slideshow-content div[id*="gallery-item-"] img,
#gallery-slideshow-content div[id^="gallery-item-"] img { 
  width: 100% !important;
  height: auto !important;
  overflow: hidden;
}
.gallery-slideshow-controls .gallery-slide-jumper-container {
  text-align: center;
  padding-left: 0;
}
.gallery-slideshow-controls .gallery-slide-jumper-container .gallery-slide-jumper {
  padding: 2px;
}


/*-------------------
----MAIN MENU STYLE ------
---------------------*/
.main-menubox-outer {
  background-image: -webkit-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -moz-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -o-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.main-menubox { 
  position: relative;
}
.main-menubox .main-menubox-title {  
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}
.main-menubox .main-menubox-title::before,
.main-menubox .main-menubox-title::after {
  display: inline-block;
  content: "";
  border-top: .3rem solid #E78728;
  width: 4rem;
  margin: 0 1rem;
  transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .main-menubox .main-menubox-title {
    font-size: 2rem !important;
  }
  .main-menubox .main-menubox-title::before,
  .main-menubox .main-menubox-title::after {
    width: 0rem;
  }
}

.main-menubox .main-menubox-content { 
}
.main-menubox .main-menubox-content ul {  }




/*------------------------------------------
	EVENT CALENDAR 
--------------------------------------------*/
.side-menubox .side-menubox-content table tr td.indent {
  background-color: rgba(0, 0, 0, 0.05);
}


/*-------------------
----PAGINATION ------
---------------------*/
.pagination { }
.pagination > .page-item > a, 
.pagination > .page-item > span {
  padding: 5px 15px;
  background: #fff;
  color: #ff6407;
  moz-border-radius: 25px !important;
  -khtml-border-radius: 25px !important;
  -webkit-border-radius: 25px !important;
  border-radius: 25px !important;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,.1);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,.1);
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,.1);
  width: 60px;
  height: 30px;
  border: 1px solid rgba(0,0,0,.05);
  display: inline-block !important;
  vertical-align: middle;
  line-height: 1.3;
  text-decoration: none;
  margin: 4px !important;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.pagination > .page-item.active > a {
  color: #fff;
  background: rgba(181, 214, 23, 1);
}
.pagination > .page-item > a:hover, 
.pagination > .page-item > span:hover {
  color: #fff;
  background: #ff6407;
}


/*-------------------
----TEXTAREA ------
---------------------*/
.tbox {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 20px #E4E9C9;
  -moz-box-shadow: inset 0 0 20px #E4E9C9;
  box-shadow: inset 0 0 20px #E4E9C9;
  margin-bottom: 20px;
}

/*-------------------
----BUTTON ------
---------------------*/
.btn {
  display: inline-block;
  position: relative;
  font-family: "Jost",sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
  border: none;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 6px 25px;
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s;
  background: #ff5744;
  background: -webkit-linear-gradient(to left, #ffa844, #ff5744);
  background: -moz-linear-gradient(to left, #ffa844, #ff5744);
  background: -ms-linear-gradient(to left, #ffa844, #ff5744);
  background: -o-linear-gradient(to left, #ffa844, #ff5744);
  background: linear-gradient(to left, #ffa844, #ff5744);  
}
.btn:hover {
  color: #000;
  background: #ff5744; 
  background: -webkit-linear-gradient(to right, #ffa844, #ff5744);
  background: -moz-linear-gradient(to right, #ffa844, #ff5744);
  background: -ms-linear-gradient(to right, #ffa844, #ff5744);
  background: -o-linear-gradient(to right, #ffa844, #ff5744);
  background: linear-gradient(to right, #ffa844, #ff5744);    
}


/*-------------------
----PAGER ------
---------------------*/
ul.pager { 
  list-style: none; 
  margin: 1rem 0;
}
ul.pager li {}
ul.pager li > a,
ul.pager li > a:focus {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 6px 25px;
  background: #ff5744;
  background: -webkit-linear-gradient(to left, #ffa844, #ff5744);
  background: -moz-linear-gradient(to left, #ffa844, #ff5744);
  background: -ms-linear-gradient(to left, #ffa844, #ff5744);
  background: -o-linear-gradient(to left, #ffa844, #ff5744);
  background: linear-gradient(to left, #ffa844, #ff5744); 
  border: none;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 50px transparent;
  -moz-box-shadow: inset 0 0 0 50px transparent;
  box-shadow: inset 0 0 0 50px transparent;
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s; 
}
ul.pager li > a:hover {
  background: #ff5744;
  background: -webkit-linear-gradient(to right, #ffa844, #ff5744);
  background: -moz-linear-gradient(to right, #ffa844, #ff5744);
  background: -ms-linear-gradient(to right, #ffa844, #ff5744);
  background: -o-linear-gradient(to right, #ffa844, #ff5744);
  background: linear-gradient(to right, #ffa844, #ff5744);
  color: #000;
}


/*------------------------------------------
	BACK TO TOP 
--------------------------------------------*/
a.back-to-top {
  position: fixed;
  right: 45px;
  bottom: 100px;
  display: inline-block; 
}


/*------------------------------------
	EVENT CALENDAR - NEXT EVENT Style
-------------------------------------*/
.marquee .marquee-body { 
  font-size: 16px;
}
.marquee .marquee-body marquee a {
  padding: 0 0 0 15px;
}
.marquee-container {
  width: 100%;
  background-color: transparent;
  padding: 10px 0;
}
.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  flex: 0 0 auto;
  padding: 0 20px;
  font-size: 1.2rem;
  color: #000;
}
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Optional: Pause animation on hover */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-container > .marquee-content > .marquee-item > div {
  display: inline-block;
  padding-left: 10px;
}
.marquee-container > .marquee-content > .marquee-item:before {
  content:"*** MAVEX terem EsemĂ©nyek ***"; 
  padding-right: 15px; 
} 


/*-------------------
----POPULAR MENU (HITS) ------
---------------------*/

.popular-menu {
    
}
.popular-menu-item { }
.popular-menu-item-img {
  float: left;
  width: 90px;
  overflow: hidden;
}
.popular-menu-item-img a {

}
.popular-menu-item-img a img {
  width: 100%;
  height: auto;
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.popular-menu-item a img {  
  -o-transition: transform 0.6s ease-in-out 0s;
  -ms-transition: transform 0.6s ease-in-out 0s;
  -moz-transition: transform 0.6s ease-in-out 0s;
  -webkit-transition: transform 0.6s ease-in-out 0s;
  transition: transform 0.6s ease-in-out 0s;
}
.popular-menu-item:hover a img { 
  opacity: .8;
  webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.popular-menu-item-title {
  font-family: "Jost",sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #091E3E;
  line-height: 1.2;
  padding: 5px 5px 5px 110px;
}
.pupular-menu-item-hits {
  font-family: "Jost",sans-serif;
  line-height: 1.7;
  font-weight: 400;
  margin-top: 5px;
  font-size: .85em;
  color: #7f8b92;
  padding-left: 10px;
}
.popular-menu-item-date {
  font-family: "Jost",sans-serif;
  line-height: 1.7;
  font-weight: 400;
  font-size: .75em;
  color: #7f8b92;
}


/*-------------------
----CHATBOX ------
---------------------*/

.chatbox-page {
  margin-bottom: 30px;
  font-size: 1rem;
}
.chatbox-page label input,
.chatbox-page label span {
  margin-left: 10px;
}
#chatbox .btn {
  font-size: 11px !important;
}


/*-------------------
----COMMENTS ------
---------------------*/
/* Comment */
.comment-frame { 
  border-bottom: 5px solid rgba(181, 214, 23, 1);
  background: radial-gradient(circle at center, rgba(255, 255, 160, 0.2) 0%, #fffff0 100%);
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.commentbox-top { }
.commentbox-avatar { }
.commentbox-username { }
.commentbox-date { 
  font-size: .675em;
}
.commentbox-reply { }
.commentbox-reply a.btn {
  font-family: "Jost", sans-serif;
  font-size: .675em; 
  color: #E78728;
  padding: .25rem .5rem;
  background: transparent;
  border-color: transparent;
  border-radius: 0px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s; 
}
.commentbox-reply a.btn:hover {
  color: rgba(181, 214, 23, 1);
  background-color: #f1faff;
  border-color: transparent;
}
.commentbox-comment { 
  font-family: "Jost", sans-serif;
}
.comment-status { 
  font-family: "Jost", sans-serif;
  font-size: .675em;
}
.comment-moderate { 
  font-size: .675em !important; 
}
.comment-moderate .comment-edit a.btn,
.comment-moderate .comment-moderate a.btn {  
  font-family: "Jost", sans-serif;
  color: #E78728;
  padding: .25rem .5rem;
  background: transparent;
  border-color: transparent;
  border-radius: 0px;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s; 
}
.comment-moderate .comment-edit a.btn:hover,
.comment-moderate .comment-moderate a.btn:hover {  
  color: rgba(181, 214, 23, 1);
  background-color: #f1faff;
  border-color: transparent;
}


/* Comment form */
.comment-box-form { 
  background: radial-gradient(circle at center, rgba(255, 255, 160, 0.2) 0%, #fffff0 100%);
}
.comment-box-form input.author { 
  margin-bottom: 10px;
}
.comment-options {
  margin: 10px;
}
.comment-box-form textarea.comment-input {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 20px #E4E9C9;
  -moz-box-shadow: inset 0 0 20px #E4E9C9;
  box-shadow: inset 0 0 20px #E4E9C9;
}
.comment-options a.btn {
  margin-right: 10px;
}


/*-------------------
----PROFILE PAGE ------
---------------------*/

#user-profile-view { 

}
#user-profile-view .profile-page { 
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#user-profile-view .profile-page .profile-content {
}
#user-profile-view .profile-page .content-cover {
  background-size:cover;
  background-origin: border-box;
  background-image: url(images/page-content-image-7.jpg);
  background-position:bottom center;
  background-repeat:no-repeat;
  height: 200px;
  max-height: 200px;
}
#user-profile-view .profile-page .content-avatar {
  width: 12rem;
  height: 12rem;
  background: #fff;  
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 5px solid #fff;
}
#user-profile-view .profile-page .content-bull {
  height: 12rem;
  position: relative;
  overflow: hidden;
}
#user-profile-view .profile-page .content-bull span:nth-child(1) {
  width: 5rem;
  height: 5rem;
  top: -6%;
  left: -3%;
  background: rgba(255,255,255,0.15);
}
#user-profile-view .profile-page .content-bull span:nth-child(1) {
  display: block;
  position: absolute;
  z-index: 1;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#user-profile-view .profile-page .content-bull span:nth-child(2) {
  width: 8rem;
  height: 8rem;
  top: 18%;
  left: 18%;
  background: rgba(255,255,255,0.10);
}
#user-profile-view .profile-page .content-bull span:nth-child(2) {
  display: block;
  position: absolute;
  z-index: 1;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#user-profile-view .profile-page .content-bull span:nth-child(3) {
  width: 3rem;
  height: 3rem;
  top: 8%;
  right: 2%;
  background: rgba(255,255,255,0.10);
}
#user-profile-view .profile-page .content-bull span:nth-child(3) {
  display: block;
  position: absolute;
  z-index: 1;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#user-profile-view .profile-page .content-bull span:nth-child(4) {
  width: 6rem;
  height: 6rem;
  top: 28%;
  right: 12%;
  background: rgba(255,255,255,0.1);
}
#user-profile-view .profile-page .content-bull span:nth-child(4) {
  display: block;
  position: absolute;
  z-index: 1;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#user-profile-view .profile-page .content-bull span:nth-child(5) {
  width: 4rem;
  height: 4rem;
  top: 70%;
  left: -6%;
  background: rgba(255,255,255,0.08);
}
#user-profile-view .profile-page .content-bull span:nth-child(5) {
  display: block;
  position: absolute;
  z-index: 1;
  -moz-border-radius: 50%;
  -khtml-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#user-profile-view .profile-page .profile-content .profil-content-inner {
  border-bottom: 5px solid rgba(181, 214, 23, 1);
}
#user-profile-view .profile-page .content-actions {
  padding: 0.5rem;
}
#user-profile-view .profile-page .content-actions a.btn.sendpm {
  padding: 0.2rem 1rem;
  -moz-border-radius: 0.5rem;
  -khtml-border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
  font-size: 16px;
}
@media (max-width: 1199.98px) {
  #user-profile-view .profile-page .content-actions a.btn.sendpm {
    text-indent: -9999px;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
  }
  #user-profile-view .profile-page .content-actions a.btn.sendpm:before { 
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Free";
    content: "\f1d8";  
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 24px;
    margin-top: calc(50% - 1.06rem);
    margin-left: calc(50% - 0.55rem);
    padding: 0;
    text-indent: 0;
  }  
}
#user-profile-view .profile-page .content-title { 
  font-family: "Jost", sans-serif;
}
#user-profile-view .profile-page .content-title .user-name { }
#user-profile-view .profile-page .content-title .user-name::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 5px auto 0 auto;
}
#user-profile-view .profile-page .content-title span { }
#user-profile-view .profile-page .content-description {
  text-align: justify;
}
#user-profile-view .profile-page .content-rating .user-rate .e-rate.e-rate-user,
#user-profile-view .profile-page .content-rating .user-rate .e-rate-votes.e-rate-votes-user {
  display: inline-block;
  width: auto !important;
}
#user-profile-view .profile-page .content-rating .user-rate .e-rate.e-rate-user {
  margin-right: 20px;
}
#user-profile-view .profile-page .content-rating .user-rate .e-rate.e-rate-user img {
  margin-left: 3px;
}
#user-profile-view .profile-page .profile-content row.userdata {
  font-family: "Jost", sans-serif;
}

/* USER PROFIL COMMENT */

#user-profile-view .comment-menubox {
  background-color: #fff;
  -webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
  -moz-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}



/*------------------------------------------
	USER LIST PAGE  
--------------------------------------------*/

#user-list { }
#user-list .select-user-list { }
/*
#user-list .pagename {
  font-family: "Nunuto", sans-serif;
  font-size: 1.775em;
  font-weight: 600;
  color: #202020;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 20px 0;
  padding: 0 0.9rem;
  text-transform: uppercase;
}
*/
#user-list .card {
  background-color: rgba(255, 255, 255, 0.39);
}
#user-list .card .card-title {
  font-family: "Jost", sans-serif;
}


/*------------------------------------------
	USER Post - Submit News  
--------------------------------------------*/



/*------------------------------------------
	FORUMS
--------------------------------------------*/
/* Forum search */
.forum-search { 
  overflow: hidden;
  margin: 0;
  padding: 20px;  
}
.forum-search .input-group {
  
}
.forum-search .input-group input.form-control {
  margin: 0; 
  padding: 0 10px; 
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 20px #E4E9C9;
  -moz-box-shadow: inset 0 0 20px #E4E9C9;
  box-shadow: inset 0 0 20px #E4E9C9;
  border-right: none;
}
.forum-search .input-group button {
  margin: 0;
  padding: 10px 20px;   
  border: 1px solid #f36100; 
  -moz-border-radius: 0;
  -khtml-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #e16521;
  background-image: -webkit-gradient(linear, left top, right top, from(#e16521), to(#e4381C));
  background-image: -webkit-linear-gradient(left, #e16521 0%, #e4381C 100%);
  background-image: -moz-linear-gradient(left, #e16521 0%, #e4381C 100%);
  background-image: -o-linear-gradient(left, #e16521 0%, #e4381C 100%);
  background-image: linear-gradient(to right, #e16521 0%, #e4381C 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e16521', endColorstr='#e4381C', GradientType=1 );
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  text-decoration: none;
  outline: none;
  -o-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  -moz-transition: background-color 1000ms linear;
  -webkit-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear;
}
.forum-search .input-group button i {
  color: #fff;
}
.forum-search .input-group button:hover {
  color: #fff;
  background-color: #cf260a;
  background-image: none;
  border: 1px solid #f36100;
  -o-transition: background-color 1000ms linear;
  -ms-transition: background-color 1000ms linear;
  -moz-transition: background-color 1000ms linear;
  -webkit-transition: background-color 1000ms linear;
  transition: background-color 1000ms linear;
}


/* Forum Main forum layout */
#forum.forum {   
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}
#forum .forum-parent-title {   
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 24px; 
  font-weight: 600;
  color: #787676; 
  line-height: 1;
  margin: 20px 15px;
  
}
#forum .forum-child {  
}
#forum .forum-child > .row {  
  margin: 0;
  padding: 0;  
}
#forum .forum-child .forum-child-item {   
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}

@media (max-width: 1199.98px) {
  #forum .forum-child .forum-child-item {
    padding: 30px 15px !important;
  }
}

#forum .forum-child .forum-child-item .forum-child-item-title {
  font-size: 20px;
  margin-top: 5px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2a2a2a;
}
#forum .forum-child .forum-child-item .forum-child-item-title::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 10px 0;
}
#forum .forum-child .forum-child-item img {
  -webkit-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  -moz-box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
  box-shadow: -30px -30px 0px -20px rgba(181, 214, 23, 1);
}
#forum .forum-child .forum-child-item .forum-child-item-desc {
  font-family: "Sora", sans-serif;
  // color: #6B6A75;
  // font-size: 1rem;
  font-weight: 400;
  // line-height: 1.5;
}
#forum .forum-child .forum-child-item .forum-child-item-subforums {

}
#forum .forum-child .forum-child-item .forum-child-item-bottom {
  border-color: rgba(181, 214, 23, 1) !important;
}
#forum .forum-child .forum-child-item .forum-thread,
#forum .forum-child .forum-child-item .forum-replies,
#forum .forum-child .forum-child-item .forum-lastpost {
}
#forum .forum-child .forum-child-item .forum-thread span.badge,
#forum .forum-child .forum-child-item .forum-replies span.badge,
#forum .forum-child .forum-child-item .forum-lastpost span.badge {
  font-family: "Jost", sans-serif;
  font-size: 20px; 
  font-weight: 500;
  color: rgba(181, 214, 23, 1); 
  line-height: 24px; 
  background-color: transparent !important;
  padding: 0;
}
#forum .forum-child .forum-child-item .forum-thread .text,
#forum .forum-child .forum-child-item .forum-replies .text,
#forum .forum-child .forum-child-item .forum-lastpost .text {
  font-family: "Jost", sans-serif;
  font-size: 14px; 
  font-weight: 400;
  color: #888; 
  line-height: 1.2; 
}
#forum .forum-child .forum-child-item .forum-lastpost span {
  font-family: "Jost", sans-serif;
  font-size: 14px; 
  font-weight: 400;
  color: #c4c4c4; 
  line-height: 24px; 
  padding: 0;
}
#forum .forum-footer {
  font-family: "Jost", sans-serif;
  font-size: 14px; 
  font-weight: 500;
  color: #c4c4c4; 
  line-height: 1;
  text-transform: uppercase; 
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
  margin: 5px 0 15px 0;  
} 

/*------------------------------------------
	FORUM TRACK 
--------------------------------------------*/
#forum-track { 
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
  margin-bottom: 1.5rem !important;
  border: 1px solid #e2e7eb !important;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
#forum-track .table-responsive table, 
#forum-track .table-responsive table th, 
#forum-track .table-responsive table td {
  background-color: transparent;
}
#forum-track table tr {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  border-bottom: 1px solid rgba(181, 214, 23, 1);
}
#forum-track table th,
#forum-track table td {
  border-bottom: none;
}
#forum-track .forum-track-item-newflag {
  background-color: rgba(181, 214, 23, 0.2); 
  margin: 0;
  height: 50px;
  width: 50px;
}
#forum-track .forum-track-item-newflag svg {
  color: rgba(181, 214, 23, 1);
  line-height: 50px;
  width: 25px;
  height: 25px;
}


/*------------------------------------------
	FORUM VIEWFORUM 
--------------------------------------------*/
#forum-viewforum { }

#forum-viewforum .forum-viewforum-title {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #787676;
  line-height: 1;
  margin: 20px 15px;
}
#forum-viewforum .forum-viewforum-button {
  margin: 20px 20px 10px 0;
}


.forum-viewforum {
}
.forum-viewforum .custom-table-responsive {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}

@media (max-width: 1199.98px) {
  .forum-viewforum .custom-table-responsive {
    padding: 30px 15px !important;
  }
}

.forum-viewforum .custom-table-responsive .custom-table { 
  margin-bottom: 0px;
}
/*
.forum-viewforum .custom-table-responsive .custom-table thead tr, 
.forum-viewforum .custom-table-responsive .custom-table thead th {
    border-top: none;
    border-bottom: none !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1rem; 
}
*/
.forum-viewforum .custom-table-responsive .custom-table thead th { 
  background-color: rgba(181, 214, 23, 1);
  border: none;
  font-family: "Jost", sans-serif; 
  color: #fff;
}
.forum-viewforum .custom-table-responsive .custom-table tr:not(.spacer) {
  border-radius: 10px;
}
.forum-viewforum .custom-table-responsive .custom-table tbody th, 
.forum-viewforum .custom-table-responsive .custom-table tbody td {
  font-family: "Jost", sans-serif;
  color: #777;
  padding-bottom: 20px;
  padding-top: 20px;
  background-color: #f0f4dc !important;
}
.forum-viewforum .custom-table-responsive .custom-table tbody th .small, 
.forum-viewforum .custom-table-responsive .custom-table tbody td .small {
  font-size: 0.775em;
  color: #b3b3b3;
  font-weight: 300; 
}
/*
.forum-viewforum .custom-table-responsive .custom-table tbody tr:not(.spacer) {
    border-radius: 7px; 
    overflow: hidden;
}
*/
.forum-viewforum .custom-table-responsive .custom-table thead tr th:first-child,
.forum-viewforum .custom-table-responsive .custom-table tbody tr th {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px; 
}
.forum-viewforum .custom-table-responsive .custom-table thead tr th:last-child,
.forum-viewforum .custom-table-responsive .custom-table tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px; 
}
.forum-viewforum .custom-table-responsive .custom-table tr.spacer td {
  padding: 0 !important;
  height: 10px;
  border-radius: 0 !important;
  background: transparent !important;
}
.forum-viewforum .custom-table-responsive .custom-table tr:not(.spacer) th.forum-viewforum-item-icon svg {
  color: rgba(181, 214, 23, 1);
  line-height: 1;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.forum-viewforum .custom-table-responsive .custom-table .forum-viewforum-item-topictitle::after {
  content: "";
  width: 150px;
  border-top: 2px solid rgba(181, 214, 23, 1);
  padding-bottom: 2px;
  display: block;
  margin: 2px 0 0 0;
}
.forum-viewforum .custom-table-responsive .custom-table .badge {
  background-color: rgba(181, 214, 23, 1) !important;
  color: #fff !important;
}

/* SUB-ITEM */
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-topictitle {  
  margin-top: 5px;
  color: #2a2a2a;
  margin-bottom: 0;
}
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-topictitle::after {
  content: "";
  width: 150px;
  border-top: 2px solid rgba(181, 214, 23, 1);
  padding-bottom: 2px;
  display: block;
  margin: 2px 0 0 0;
}
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom {
  border-color: rgba(181, 214, 23, 1) !important;
}
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-replies, 
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-views, 
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-lastpost {
}
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-replies span.badge,
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-views span.badge,
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-lastpost span.badge {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(181, 214, 23, 1);
  line-height: 24px;
  background-color: transparent !important;
  padding: 0;
}
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-replies .text,
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-views .text,
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-lastpost .text {
  font-family: "Jost", sans-serif;
  font-size: 14px; 
  font-weight: 400;
  color: #888; 
  line-height: 1.2; 
}
.forum-viewforum .forum-viewforum-item .forum-viewforum-item-bottom .forum-viewforum-lastpost span {
  font-family: "Jost", sans-serif;
  font-size: 14px; 
  font-weight: 400;
  color: #c4c4c4; 
  line-height: 24px; 
  padding: 0;
}
.forum-viewforum .forum-viewforum-pages {
  margin-top: 20px;
  margin-bottom: 10px;
}

.forum-viewforum > .viewforum-perms {
  font-family: "Jost", sans-serif;
}
.forum-viewforum .forum-viewforum-icon-explanation {
  font-family: "Jost", sans-serif;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
  margin: 5px 0 15px 0;
}
.forum-viewforum .forum-viewforum-icon-explanation .icon-explanation-title { }
.forum-viewforum .forum-viewforum-icon-explanation .icon-explanation-body { }
.forum-viewforum .forum-viewforum-viewable {
    font-family: "Jost", sans-serif;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
  margin: 5px 0 15px 0;
}
.forum-viewforum .forum-viewforum-viewable .forum-viewforum-viewable-title { }
.forum-viewforum .forum-viewforum-viewable .forum-viewforum-viewable-body { }


/*------------------------------------------
	FORUM VIEWTOPIC 
--------------------------------------------*/
#forum-view-topic { }
#forum-view-topic .forum-viewtopic-title { 
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #787676;
  line-height: 1;
  margin: 20px 15px;
}
#forum-view-topic .forum-viewtopic-button {
  margin: 20px 20px 10px 0;
}
               
ul.forum-viewtopic { padding-left: 0px;}
ul.forum-viewtopic li.forum-viewtopic-post {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}

@media (max-width: 1199.98px) {
  ul.forum-viewtopic li.forum-viewtopic-post {
    padding: 30px 15px !important;
  }
}

ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil {
  border-right: 2px solid rgba(181, 214, 23, 1);
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil .forum-viewtopic-avatar {
  background-color: rgba(181, 214, 23, 0.2);
  margin: 0;
  height: 100px;
  width: 100px;
  text-align: center;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil .forum-viewtopic-avatar img {
  color: rgba(181, 214, 23, 1);
  line-height: 100px;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil .forum-user-customtitle {

}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil .forum-viewtopic-poster {
  font-family: "Jost", sans-serif;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil .forum-viewtopic-level {
  font-family: "Jost", sans-serif;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil .forum-viewtopic-level-icons { }
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil .forum-viewtopic-poster-posts {
  font-family: "Jost", sans-serif;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil .forum-viewtopic-poster-joined {
  font-family: "Jost", sans-serif;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost {

}

/* to XL screens */
@media (max-width: 1199px) {
  ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost {
    border-top: 2px solid rgba(181, 214, 23, 1);
    padding-top: 1.5rem !important;
  }
  ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userprofil {
    border-right: none;
  }
}

ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postdate {
  font-family: "Jost", sans-serif;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-lastedit {
  font-family: "Jost", sans-serif; 
  margin: 0 0 10px 0;
  font-size: 0.875rem;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postoptions {
   margin: 0 0 10px 0;  
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postmessage {
  font-family: "Jost", sans-serif;
  font-size: 14px; 
  margin: 15px 0 15px 0;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postmessage iframe {

}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postmessage .forum-viewtopic-attachments {

}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postmessage .forum-viewtopic-attachments ul.thumbnails {

}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postmessage .forum-viewtopic-attachments ul.thumbnails li {
  text-align: center;
}
ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postmessage .forum-viewtopic-attachments ul.thumbnails li img {

}

/* to XL screens */
@media (max-width: 1399px) {
  ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-postmessage .forum-viewtopic-attachments ul.thumbnails li img {
    width: 100% !important;
    height: auto !important;
  }
}

ul.forum-viewtopic li.forum-viewtopic-post .forum-viewtopic-userpost .forum-viewtopic-signature {
  font-family: "Jost", sans-serif;
  margin: 0;
  padding: 15px 0 0 0;
  border-top: 2px solid rgba(181, 214, 23, 1);
}
#forum-view-topic .forum-viewtopic-quickreply {
  background: radial-gradient(circle at center, rgba(255, 255, 160, 0.2) 0%, #fffff0 100%);
}
#forum-view-topic .forum-viewtopic-moderators {
  font-family: "Jost", sans-serif;
}


/*------------------------------------------
	FORUM POST 
--------------------------------------------*/
#forum-post {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#forum-post .forum-post-caption { 
  font-family: "Jost", sans-serif;
  color: #787676;
}
#forum-post input.tbox {
  margin-bottom: 0;
}
#forum-post label {
  font-family: "Jost", sans-serif;
}
#forum-post div.bbcode-panel {
  background-color: transparent !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  border: none !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  padding: 0 10px;
}
#forum-post div.bbcode-panel a.btn {
  margin-right: 6px;
  margin-bottom: 6px;
}
#forum-post .nav.nav-tabs {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}
#forum-post .tab-content  {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}
#forum-post a.nav-link  {
  color: #000;
}
#forum-post a.nav-link:hover  {
  color: #E48425;
}
#forum-post .form-check-input:checked {
  background-color: rgba(181, 214, 23, 1);
  border-color: rgba(181, 214, 23, 1);
}


/*------------------------------------------
	FORUM STATS - RESPONSIVE 
--------------------------------------------*/
#forum-stats {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
  margin-bottom: 1.5rem !important;
  border: 1px solid #e2e7eb !important;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
#forum-stats .tab-content,
#forum-stats .tab-content .tab-pane,
#forum-stats .tab-content .tab-pane .table-responsive,
#forum-stats .tab-content .tab-pane .table-responsive table,
#forum-stats .tab-content .tab-pane .table-responsive table th,
#forum-stats .tab-content .tab-pane .table-responsive table td {
  background-color: transparent;
}
/*
#forum-stats .tab-content div.table-responsive,
#forum-stats .panel div.table-responsive {
  border: none;
}
*/
#forum-stats .nav.nav-tabs {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(181, 214, 23, 1);
}
#forum-stats .nav.nav-tabs a.nav-link  {
  color: #000;
}
#forum-stats .nav.nav-tabs a.nav-link:hover  {
  color: #E48425;
}
#forum-stats .nav.nav-tabs a.nav-link.active  {
  background-color: rgba(181, 214, 23, 1);
}
#forum-stats .tab-content .tab-pane table th,
#forum-stats .tab-content .tab-pane table td {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  border-bottom: 1px solid rgba(181, 214, 23, 1);
}


/* Ez Új */
#forum-stats .forum-summary .border-bottom {
  border-bottom: 1px solid rgba(181, 214, 23, 1) !important;
}


/*------------------------------------------
	FORUM BREADCRUMBS 
--------------------------------------------*/
#forum-breadcrumbs {
}
#forum-breadcrumbs li {
  font-size: 0.875rem !important;
  margin: 0.5em;
}
#forum-breadcrumbs li::before {
  content: normal;
}
#forum-breadcrumbs a {
  background: rgba(181, 214, 23, 1);
  padding: 0.3em 0.7em;
  float: left;
  text-decoration: none;
  color: #000;
  position: relative;
}
#forum-breadcrumbs a:hover {
  color: #fff;
  background: rgba(151, 182, 0, 1);
}
#forum-breadcrumbs a::before,
#forum-breadcrumbs a::after {
  content:'';
  position:absolute;
  top: 0;
  bottom: 0;
  width: 1em;
  background: rgba(181, 214, 23, 1);
  -webkit-transform: skew(-10deg);
  -moz-transform: skew(-10deg);
  -o-transform: skew(-10deg);
  -ms-transform: skew(-10deg);
  transform: skew(-10deg);
}
#forum-breadcrumbs a::before {
  left: -.5em;
  border-radius: 5px 0 0 5px;
}
#forum-breadcrumbs a:hover::before {
  background: rgba(151, 182, 0, 1);
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
#forum-breadcrumbs a::after {
  right: -.5em;
  border-radius: 0 5px 5px 0;
}
#forum-breadcrumbs a:hover::after {
  background: rgba(151, 182, 0, 1);
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: .5s;
}
#forum-breadcrumbs .current,
#forum-breadcrumbs .current:hover {
  font-weight: bold;
  background: none;
  padding: 0.3em 0.7em;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
#forum-breadcrumbs .current::after,
#forum-breadcrumbs .current::before{
  content: normal;
}


/*-------------------
----FORUM - TOP NEW FORUMPOSTS ON FORUM PAGES ------
---------------------*/
.forum-news-menubox-outer {
  background-image: -webkit-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -moz-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: -o-linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  background-image: linear-gradient(90deg, rgba(230, 226, 0, 0.1) 0%, rgba(255, 255, 224, 0.05) 100%);
  -webkit-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  -moz-box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
  box-shadow: 0px 15px 40px -5px rgba(0,0,0,0.1), inset 0 -16px 90px #E4E9C9;
}
.forum-news-menubox { 
  position: relative;
}
.forum-news-menubox .forum-news-menubox-title {  
  color: #3a474f;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}
.forum-news-menubox .forum-news-menubox-title::before,
.forum-news-menubox .forum-news-menubox-title::after {
  display: inline-block;
  content: "";
  border-top: .3rem solid #E78728;
  width: 4rem;
  margin: 0 1rem;
  transform: translateY(-1rem);
}

@media (max-width: 1199.98px) {
  .forum-news-menubox .forum-news-menubox-title {
    font-size: 2rem !important;
  }
  .forum-news-menubox .forum-news-menubox-title::before,
  .forum-news-menubox .forum-news-menubox-title::after {
    width: 0rem;
  }
}

.forum-news-menubox .forum-news-menubox-content { 
}
.forum-news-menubox .forum-news-menubox-content ul {  
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
.forum-news-menubox .forum-news-menubox-content ul li {  
  font-family: "Jost", sans-serif;
  color: #777;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 3px 15px;
  margin-bottom: 2px;
  background-color: #f0f4dc !important;
}
.forum-news-menubox .forum-news-menubox-content ul li .topic-lastpost-date { 
   font-size: 0.8rem;
}
.forum-news-menubox .forum-news-menubox-content ul li .badge {
  background-color: rgba(181, 214, 23, 1) !important;
  color: #fff !important;
}



/*------------------------------------------
	SEARCH PAGE 
--------------------------------------------*/
#searchform {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#searchform span.for-search-button > .input-group-btn > .btn-group {
  padding-left: 15px;
}
#searchform .tbox {
  margin-bottom: 0;
}
#searchform select { }


/*------------------------------------------
	SIGNIN plugin template 
--------------------------------------------*/
#signin > .btn,
#signout > .btn {
  display: inline-block;
  position: relative;
  font-family: "Jost",sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
  border: none;
  -moz-border-radius: 50px;
  -khtml-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  padding: 6px 25px;
  -o-transition: ease-in all 0.5s;
  -ms-transition: ease-in all 0.5s;
  -moz-transition: ease-in all 0.5s;
  -webkit-transition: ease-in all 0.5s;
  transition: ease-in all 0.5s;
  background-color: #198754;
  background-image: none;
}
#signin > .btn:hover,
#signout > .btn:hover {
  color: #fff7ba;
  background: #13623d; 
  background-image: none; 
}
.modal-content { 
  background-color: #fffed7;
}
.modal-content .modal-header,
.modal-content .modal-footer {
  background-color: rgb(255, 245, 160, 1);
}
.modal-content .modal-body .usersettings svg, 
.modal-content .modal-body .profile svg,
.modal-content .modal-body .admin-area svg,
.modal-content .modal-body .logout svg {
  width: 25px;
  height: 25px;
  color: rgba(181, 214, 23, 1);
}
.modal-content .modal-body .userpicture {
  background-color: rgba(181, 214, 23, 0.3);
  height: 140px;
  width: 140px;
}

/*------------------------------------------
	SIGNUP page template 
--------------------------------------------*/
#signup {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#signup .bbcode-panel {
  background-color: transparent !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  border: none !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  padding: 0 10px;
}
#signup .bbcode-panel a.btn {
  margin-right: 6px;
  margin-bottom: 6px;
}

/*------------------------------------------
	USER SETTINGS Page template 
--------------------------------------------*/
#user-settings { 
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#user-settings div.bbcode-panel {
  background-color: transparent !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  border: none !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  padding: 0 10px;
}
#user-settings div.bbcode-panel a.btn {
  margin-right: 6px;
  margin-bottom: 6px;
}


/*------------------------------------------
	SUBMITNEWS PAGE - need add id='submitnews' to <div> - hardcoded 
--------------------------------------------*/
#submitnews {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#submitnews label {
  font-family: "Jost", sans-serif;
}
#submitnews div.bbcode-panel {
  background-color: transparent !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  border: none !important;
  border-radius: 0px !important;
  box-shadow: none !important;
  padding: 0 10px;
}
#submitnews div.bbcode-panel a.btn {
  margin-right: 6px;
  margin-bottom: 6px;
}


/*------------------------------------------
	LOG - STATS template 
--------------------------------------------*/
#alltimevisits_total,
#alltimevisits_unique,
#log-todaysvisits {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#alltimevisits_total th,
#alltimevisits_total td,
#alltimevisits_unique th,
#alltimevisits_unique td,
#log-todaysvisits th,
#log-todaysvisits td {
  background-color: transparent !important;
}


/*------------------------------------------
	PRIVAT MESSAGES - PM template 
--------------------------------------------*/
#pm-inbox { }
#pm-inbox .pagename,
#pm-outbox .pagename,
#pm-blocked .pagename {
  color: #E78728;
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 1px;
}
#pm-inbox .pagename::after,
#pm-outbox .pagename::after,
#pm-blocked .pagename::after {
  content: "";
  width: 150px;
  border-top: 4px solid #E78728;
  padding-bottom: 10px;
  display: block;
  margin: 15px auto 0 auto;
}
#pm-inbox .pm-inbox-item,
#pm-outbox .pm-outbox-item,
#pm-blocked .pm-blocked-item { 
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#pm-send-pm {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.39);
}
#pm-send-pm label {
  font-family: "Jost", sans-serif;
}
#pm-send-pm div.form-control {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 20px #E4E9C9;
  -moz-box-shadow: inset 0 0 20px #E4E9C9;
  box-shadow: inset 0 0 20px #E4E9C9;
  margin-bottom: 0;
}















