/* ============================
    01. Google Fonts
    02. Global Properties
	03. Preloader
	04. Buttons
    05. Scrollbar
    06. Selection
    07. Header
    08. Slider
    09. About
    10. Menus
    11. Gallery
    12. Team
	13. Testimonials
	14. Blog & Post
    15. Contact
	16. Footer
    17. Overlay Effect Bg image
	18. Media Query
============================ */


/* =======  Google Fonts ======= */

@import url('https://fonts.googleapis.com/css?family=Pirata+One|Rambla:400,700&display=swap');

/* ======= Global Properties  ======= */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  font-family: 'Rambla', sans-serif;
  font-size: 15px;
  line-height: 1.75em;
  font-weight: 400;
  color: #999;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #0f0f0f;
}

p {
  font-family: 'Rambla', sans-serif;
  font-size: 15px;
  line-height: 1.75em;
  font-weight: 400;
  color: #999;
  margin-bottom: 15px;
}

img {
  width: 100%;
  height: auto;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 63px;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 49px;
}

h4 {
  font-size: 42px;
}

h5 {
  font-size: 35px;
}

h6 {
  font-size: 28px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-weight: 400;
  font-family: 'Pirata One', cursive;

  margin-bottom: 15px;
}


/* margin top */

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

.mt-120 {
  margin-top: 120px !important;
}


/* margin bottom */

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

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

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}


/* padding-bottom */

.pb-120 {
  padding-bottom: 120px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

b {
  color: #991b1f;
  font-weight: 400;
}

.br {
  border-radius: 10px;
}

.section-padding {
  padding: 120px 0;
}

.o-hidden {
  overflow: hidden;
}

.pos-re {
  position: relative;
}

.full-width {
  width: 100% !important;
}

.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}


/* owl theme */

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
  display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 40px;
  height: 2px;
  margin: 0 2px 0 0;
  border-radius: 0;
  background: rgba(200, 200, 200, 0.4);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #991b1f;
}

.owl-theme .owl-nav [class*=owl-] {
  position: absolute;
  top: 40%;
  background: transparent;
  color: #991b1f;
  width: 35px;
  height: 35px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid #991b1f;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
  color: #991b1f;
}

.bg-img .owl-theme .owl-nav [class*=owl-] {
  color: #fff;
}

.owl-carousel .owl-nav .owl-next {
  right: 0;
}

.owl-carousel .owl-nav .owl-prev {
  left: 0;
}

.owl-carousel .owl-nav .owl-next span,
.owl-carousel .owl-nav .owl-prev span {
  font-size: 16px;
  line-height: 1em;
}

.owl-theme:hover .owl-nav [class*=owl-] {
  opacity: 1;
}


/* ======= Preloader  ======= */
#preloader {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 5000;
}
#preloader .logo{
  margin-bottom: 10px;
}
#preloader .logo img{
  max-width: inherit;
  max-height: 50px;
  width: auto;
}
#preloader.loaded .loading-area {
  opacity: 0;
}
#preloader.loaded{
  visibility: hidden;
}
#preloader .loading-area {
  opacity: 1;
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #999;
}
#preloader.loaded .left-side {
  transform: translateX(-100%);
  transition-delay: 1s;
}
#preloader .left-side {
  left: 0;
}
#preloader.loaded .right-side {
  transform: translateX(100%);
  transition-delay: 1s;
}
#preloader .right-side {
  right: 0;
}
#preloader .left-side, #preloader .right-side {
  background: #000;
  height: 100%;
  position: absolute;
  width: 50%;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}



/* ======= Buttons  ======= */

.butn {
  font-family: 'Pirata One', cursive;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 21px;
  padding: 12px 32px;
  background: #000;
  border: 1px solid transparent;
  position: relative;
  z-index: 3;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.butn span {
  position: relative;
  z-index: 2;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  color: #fff;
}

.butn:before,
.butn:after {
  content: '';
  width: 0;
  height: 100%;
  background: #000000;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
  z-index: 1;
  opacity: .4;
}

.butn:after {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background: #000000;
  opacity: 1;
}

.butn:hover:before,
.butn:hover:after {
  width: 100%;
}

.butn:hover:after {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.butn:hover span {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.butn-bg {
  background: #991b1f;
  color: #000;
  border-radius: 30px;
}

.butn-bg:hover span {
  color: #FFF;
}

.butn-light {
  background: #000;
}

.butn-light:before,
.butn-light:after {
  background: #991b1f;
}

.butn-light:hover span {
  color: #000;
}

.butn-light span {
  color: #991b1f;
}

.butn-bord {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.butn-bord:before,
.butn-bord:after {
  background: #991b1f;
}

.butn-bord:hover {
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.butn-bord:hover span {
  color: #000;
}


/* =======  Scrollbar  ======= */

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #000;
}

::-webkit-scrollbar-thumb:hover {
  background: #000;
}


/* =======  Selection  ======= */

::-webkit-selection {
  color: #fff;
  background: #991b1f;
}

::-moz-selection {
  color: #fff;
  background: #991b1f;
}

::selection {
  color: #fff;
  background: #991b1f;
}


/* =======  Header  ======= */

.header {
  min-height: 100vh;
  position: relative;
}

.header.video {
  overflow: hidden;
}

.header .caption .o-hidden {
  display: inline-block;
}

.header .caption h4 {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  letter-spacing: 10px;
  word-spacing: 5px;
}

.header .caption h1 {
  font-size: 77px;
  margin-bottom: 15px;
  letter-spacing: 0px;
  color: #fff;
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  word-spacing: 5px;
}

.header .caption p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 15px;
  color: #fff;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.header .caption p span {
  text-transform: uppercase;
  margin: 0 5px;
  padding-right: 15px;
  position: relative;
}

.header .caption p span:last-child {
  padding: 0;
}

.header .caption p span:last-child:after {
  display: none;
}

.header .caption p span:after {
  content: '';
  width: 7px;
  height: 7px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #991b1f;
  position: absolute;
  top: 10px;
  right: 0;
  opacity: .5;
}

.header .caption .redboa-button {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.header .icon {
  font-size: 49px;
  color: #991b1f;
  display: inline-block;
  margin-bottom: 15px;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}


/* =======  Slider  ======= */

.slider .owl-item,
.slider-fade .owl-item {
  height: 100vh;
  position: relative;
}

.slider .item,
.slider-fade .item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
}

.slider .item .caption,
.slider-fade .item .caption {
  z-index: 9;
}

.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
  position: absolute;
  bottom: 5vh;
  width: 100%;
}


/* =======  About  ======= */

.title {
  font-size: 49px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 400;
  font-family: 'Pirata One', cursive;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title span {
  color: #991b1f;
}

h4.title::before,
h4.title::after {
  content: '';
  width: 60px;
  height: 2px;
  position: absolute;
  background-color: #991b1f;
}

h4.title::before {
  bottom: 0px;
  right: calc(50% - 15px);
}

h4.title::after {
  bottom: 0;
  left: calc(50% - 15px);
}

h4 span {
  color: #991b1f;
}

.sub-title {
  color: #991b1f;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-family: 'Rambla', sans-serif;
}

.feat li {
  margin: 0;
  text-align: center;
  padding: 30px 5px;
  background-color: #f7f7f7;
}

.feat li:nth-child(odd) {
  background-color: #f3f3f3;
}

.feat li:hover {
  color: #fff;
  background-color: #991b1f;
}

.feat li:hover .icon {
  color: #eee;
}

.feat {
  margin: 0;
}

.feat .icon {
  font-size: 30px;
  color: #991b1f;
}

.feat h6 {
  font-size: 15px;
  font-weight: 400;
}

.about .about-img {
  overflow: hidden;
  position: relative;
}

.about .about-img:hover .img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.about .about-img .img {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.about h4 {
  font-size: 49px;
}


/* =======  Menus  ======= */

.menus .owl-carousel .owl-stage-outer {
  padding: 10px 0 0;
}

.menus .tabs-icon .item {
  padding: 15px 5px;
  cursor: pointer;
}

.menus .tabs-icon .item .icon {
  padding: 15px;
  color: #fff;
  font-size: 40px;
}

.menus .tabs-icon .item h6 {
  font-size: 28px;
  color: #FFF;
  margin-bottom: 0;
}

.menus .tabs-icon .owl-item.actived .item,
.menus .tabs-icon .item.active {
  color: #fff;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
}

.menus .tabs-icon .owl-item.actived .item .icon,
.menus .tabs-icon .item.active .icon {
  color: #991b1f;
}

.menus .menus-content .cont {
  display: none;
}

.menus .menus-content .cont .menus-info {
  text-align: right;
}

.menus .menus-content .cont h5 {
  font-size: 21px;
  color: #991b1f;
  margin-bottom: 10px;
  text-align: left;
  border-bottom: 1px dashed #991b1f;
  line-height: 2em;
}

.menus .menus-content .cont h5 .price {
  color: #991b1f;
  float: right;
}

.menus .menus-content .active {
  display: block;
}

.menus .owl-theme .owl-nav [class*=owl-] {
  top: 35%;
  font-size: 20px;
}

.menus .owl-carousel .owl-nav .owl-next {
  right: -50px;
}

.menus .owl-carousel .owl-nav .owl-prev {
  left: -50px;
}

.menus .owl-carousel .owl-nav .owl-prev {
  left: -60px;
}

.menus .owl-carousel .owl-nav .owl-next {
  right: -60px;
}

.menus .menus-content .cont .menus-info {
  text-align: center;
  margin-bottom: 20px;
}


/* ======= Gallery  ======= */
.portfolio {
  overflow: hidden;
}
.portfolio .filtering span {
  padding: 0 10px;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
}
.portfolio .filtering .active {
  color: #991b1f;
}
.portfolio .items {
  padding: 0 10px;
  margin-top: 20px;
}
.portfolio .item-img {
  position: relative;
  overflow: hidden;
}
.portfolio .item-img:hover .item-img-overlay {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.portfolio .item-img:hover h6 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.portfolio .item-img h6 {
  font-weight: 400;
  position: relative;
  margin-bottom: 0px;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  -webkit-transition: all .5s;
  transition: all .5s;
  letter-spacing: 1px;
}
.portfolio .item-img-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 2;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.portfolio .item-img-overlay a {
  font-size: 30px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #991b1f;
}

/* =======  Team  ======= */

.team .item {
  overflow: hidden;
  position: relative;
  text-align: center;
}

.team .item .team-img {
  overflow: hidden;
  position: relative;
}

.team .item .team-img:hover .img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.team .item .team-img .img {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.team .item .infos {
  text-align: center;
  padding-top: 30px;
  background-color: transparent;
}

.team .item .infos h6 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 5px;
  text-transform: none;
}

.team .item .infos span {
  color: #991b1f;
  margin-bottom: 0px;
}


/* =======  Testimonials  ======= */

.testimonials .client-area {
  margin-bottom: 15px;
}

.testimonials .client-area .img {
  display: inline-block;
  position: relative;
}

.testimonials .client-area .img .icon {
  width: 50px;
  position: absolute;
  top: 70px;
}

.testimonials .client-area .img .icon:first-of-type {
  left: -70px;
}

.testimonials .client-area .img .icon:last-of-type {
  right: -70px;
}

.testimonials .client-area .author {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}

.testimonials .client-area h6 {
  font-size: 35px;
  text-transform: none;
  letter-spacing: 2px;
  margin-bottom: 0;
  word-spacing: 4px;
}

.testimonials .client-area span {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #991b1f;
  letter-spacing: 5px;
}

.testimonials p {
  margin-bottom: 15px;
}


/* =======  Blog & Post  ======= */

.blog .item {
  -webkit-box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  margin-bottom: 30px;
}

.blog .item .post-img {
  overflow: hidden;
  position: relative;
}

.blog .item .post-img:hover .img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.blog .item .post-img .img {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.blog .item .cont {
  padding: 30px 0;
}

.blog .item .cont h6 {
  font-size: 35px;
  margin-bottom: 15px;
  word-spacing: 2px;
}

.blog .item .info a {
  margin-right: 0px;
  font-size: 15px;
}

.blog .item .info a:last-child {
  margin-right: 0;
}

.blog .item .info b {
  color: #991b1f;
  font-weight: 400;
}

.blog .item .more {
  font-size: 21px;
  font-weight: 400;
  color: #991b1f;
  font-family: 'Pirata One', cursive;
  letter-spacing: 2px;
}

.blog .item .more:hover i {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.blog .item .more i {
  font-size: 10px;
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}


/* blog pagination */

.redboa-pagination-wrap {
  padding-top: 20px;
}

.redboa-pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}

.redboa-pagination-wrap li a {
  font-family: 'Pirata One', cursive;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #999;
  font-weight: 400;
  border-radius: 50%;
}

.redboa-pagination-wrap li a:hover {
  opacity: 1;
  text-decoration: none;
  box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.20);
  background-color: #991b1f;
  border: 1px solid #991b1f;
  color: #fff;
}

.redboa-pagination-wrap li a.active {
  background-color: #991b1f;
  border: 1px solid #991b1f;
  color: #fff;
}


/* blog and post sidebar */

.side-bar .widget {
  margin-bottom: 50px;
  overflow: hidden;
}

.side-bar .widget ul {
  margin-bottom: 0;
}

.side-bar .widget ul li {
  margin-bottom: 10px;
}

.side-bar .widget ul li:last-child {
  margin-bottom: 0;
}

.side-bar .widget ul li i {
  font-size: 10px;
  margin-right: 5px;
  color: #991b1f;
}

.side-bar .widget .recent li {
  display: block;
  overflow: hidden;
}

.side-bar .widget .recent .thum {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
}

.side-bar .widget .recent a {
  display: block;
}

.side-bar .widget .recent a:hover {
  color: #991b1f;
}

.side-bar .widget-title {
  margin-bottom: 20px;
}

.side-bar .widget-title h6 {
  font-size: 28px;
}

.side-bar .search form {
  position: relative;
}

.side-bar .search form input {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #1b1b1b;
  color: #fff;
}

.side-bar .search form button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  color: #999;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.side-bar .gallery li {
  width: 33.33333%;
  float: left;
  border: 5px solid #fff;
}

.side-bar .tags li {
  font-size: 14px;
  margin: 3px !important;
  padding: 5px 15px;
  background-color: #991b1f;
  color: #fff !important;
  float: left;
}

.side-bar .tags li:hover {
  background-color: #1b1b1b;
}


/* Post */

.post .item {
  margin-bottom: 0px;
}

.post .item .post-img {
  overflow: hidden;
  position: relative;
}

.post .item .post-img:hover .img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.post .item .post-img .img {
  -webkit-transition: all .4s;
  transition: all .4s;
}

.post .item .cont {
  padding: 20px 0px;
}

.post .item .cont h6 {
  margin-top: 15px;
  font-size: 35px;
  margin-bottom: 15px;
}

.post .item .cont h6 span {
  color: #991b1f;
}

.post .item .info a {
  margin-right: 0px;
  font-size: 13px;
}

.post .item .info a:last-child {
  margin-right: 0;
}

.post .item .info b {
  color: #991b1f;
  font-weight: 400;
}

.post .item .more {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #991b1f;
}

.post .item .more:hover i {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.post .item .more i {
  font-size: 10px;
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.post .item .spical {
  margin: 15px;
  padding: 15px;
  border-left: 4px solid #991b1f;
}


/* Post Comment */

.post .title {
  font-size: 24px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.post .title:after {
  content: '';
  width: 60px;
  height: 2px;
  background: #991b1f;
  position: absolute;
  left: 0;
  bottom: 0;
}

.post .comments,
.post .add-comment {
  padding: 15px 0px;
  border-radius: 5px;
}

.post .comments .com,
.post .add-comment .com {
  margin-bottom: 60px;
  margin-top: 30px;
}

.post .comments .com:last-child,
.post .add-comment .com:last-child {
  margin-bottom: 0;
}

.post .comments .com:nth-child(odd),
.post .add-comment .com:nth-child(odd) {
  margin-left: 50px;
}

.post .comments .img,
.post .add-comment .img {
  width: 80px;
  height: 80px;
  float: left;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

.post .comment .cont,
.post .add-comment .cont {
  margin-left: 75px;
}

.post .comments .cont h6,
.post .add-comment .cont h6 {
  font-size: 21px;
  margin-bottom: 0px;
  text-transform: none;
  letter-spacing: 1px;
}

.post .comments .cont span,
.post .add-comment .cont span {
  color: #999;
  font-size: 12px;
  font-style: italic;
  margin-bottom: 0px;
}

.post .comments .cont .reply,
.post .add-comment .cont .reply {
  float: right;
  margin-right: 15px;
  margin-top: -15px;
  font-size: 15px;
}

.post .comments .cont .reply:hover,
.post .add-comment .cont .reply:hover {
  color: #991b1f;
}


/* =======  Contact  ======= */

.contact .contact-info h5 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
}

.contact .contact-info .item {
  text-align: center;
}

.contact .contact-info .item .icon {
  font-size: 40px;
  color: #991b1f;
}

.contact .contact-info .item .cont {
  margin-bottom: 20px
}

.contact .contact-info .item .cont h6 {
  font-size: 28px;
  color: #991b1f;
  font-weight: 400;
  margin-bottom: 0px;
}

.contact .contact-info .item .cont p {
  color: #999;
  font-weight: 400;
  font-size: 15px;
}

.contact .form input,
.contact .form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 0;
  background-color: #1b1b1b;
  color: #fff;
  font-weight: 400;
}

.contact .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
}

.contact .redboa-button {
  margin: 0;
}


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

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .social a {
  width: 36px;
  height: 36px;
  line-height: 42px;
  background: transparent;
  border-radius: 50%;
  color: #991b1f;
  font-size: 18px;
  margin: 0px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

footer .social a:hover {
  color: #fff;
}

footer .social a::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background-color: #991b1f;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform: scale(0.3);
  border-radius: 50%;
  transition: 0.4s;
}

footer .social a:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

footer .social a i {
  position: relative;
}

footer p {}

footer p a {
  color: #991b1f;
}

footer img {
  width: 100px;
  margin-bottom: 20px;
}


/* ======= Overlay Effect Bg image  ======= */

[data-overlay-dark],
[data-overlay-color],
[data-overlay-light] {
  position: relative;
}

[data-overlay-dark] .container,
[data-overlay-color] .container,
[data-overlay-light] .container {
  position: relative;
  color: #fff;
  z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-color]:before,
[data-overlay-light]:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

[data-overlay-dark]:before {
  background: #000;
}

[data-overlay-color]:before {
  background-color: #000;
}

[data-overlay-light]:before {
  background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
  color: #fff;
}

[data-overlay-dark] p {
  color: #ccc;
}

[data-overlay-dark="0"]:before,
[data-overlay-color="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-color="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-color="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-color="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-color="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-color="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-color="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-color="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}

[data-overlay-dark="6"]:before,
[data-overlay-color="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-color="9"]:before,
[data-overlay-light="9"]:before {
  opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-color="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}


/* ======= Media Query  ======= */

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .mobile-navigation {
    display: inline-block;
  }

  #primary-navigation {
    display: none;
  }

  .section-padding {
    padding: 100px 0;
  }

  .redboa-side-content > .logo h1 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 15px;
    margin-left: 10px;
    display: none;
  }

  .redboa-side-content > .logo h1 span {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .about-us .content {
    margin-top: 50px
  }

  .bg-fixed {
    background-attachment: scroll !important;
  }

  .header {
    background-attachment: scroll !important;
    background-position: 50% 0 !important;
  }

  .header .caption h4 {
    font-size: 21px;
    letter-spacing: 5px;
  }

  .header .caption h1 {
    font-size: 45px;
    line-height: 1.2em;
  }

  .about .tab-content .image {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
    margin: 50px 0 0;
  }

  .redboa-side-content > .logo h1 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 15px;
    margin-left: 10px;
    display: none;
  }

  .redboa-side-content > .logo h1 span {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .gallery .filtering .filter {
    padding: 0;
  }

  .gallery .filtering span {
    margin: 0;
  }

  .section-padding {
    padding: 70px 0;
  }

  .redboa-side-content > .logo img {
    max-width: inherit;
    max-height: 30px;
    width: auto;
  }

  .redboa-side-content > .logo h1 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 15px;
    margin-left: 10px;
    display: none;
  }

  .redboa-side-content > .logo h1 span {
    display: none;
  }

  .portfolio .filtering span {
    padding: 9px 15px;
    margin: 0;}
}

@media screen and (max-width: 480px) {
  .header .caption h4 {
    font-size: 15px;
    line-height: 1.75em;
    letter-spacing: 5px;
  }

  .header .caption h1 {
    font-size: 40px;
    line-height: 1.2em;
  }

  .portfolio .filtering span {
    margin-bottom: 10px;
  }

  .redboa-side-content > .logo img {
    max-width: inherit;
    max-height: 30px;
    width: auto;
  }

  .redboa-side-content > .logo h1 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 18px;
    margin-left: 10px;
    display: none;
  }

  .redboa-side-content > .logo h1 span {
    display: none;
  }

  .header .caption p {
    font-size: 15px;
    font-weight: 400;
    color: #eee;
    word-spacing: 2px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
}

/*!
 * Bootstrap-select v1.12.4 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2017 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */

select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
.bootstrap-select {
  width: 220px \0;
  /*IE9 and below*/
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  color: #999;
}
.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}
.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 220px;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
/*# sourceMappingURL=bootstrap-select.css.map */.converter {
                                                  padding: 15px 30px;
                                                  border-radius: 4px;
                                                  max-width: 420px;
                                                  margin: 30px auto 0;
                                                  font-size: 18px;
                                                }

.converter * {
  outline: none;
}

.converter h2 {
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
}

.converter label {
  display: inline-block;
  margin-bottom: 5px;
}

.converter select,
.converter input {
  width: 100%;
}

.converter .converter-item {
  position: relative;
  font-weight: bold;
}

.converter button {
  display: block;
  width: 100%;
  margin-top: 15px;
}

.converter button i {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #666;
  padding: 6px;
  cursor: pointer;
}

.converter .word-result {
  display: inline-block;
}

.converter .number-result {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: #579d57;
  font-size: 26px;
  letter-spacing: 0.05em;
  cursor: default;
}

.converter #converter-result {
  position: relative;
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
  height: 37px;
}

.converter input[type="number"] {
  display: block;
  border: 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  font-weight: normal;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.converter input[type="number"]::-webkit-input-placeholder {
  color: #999;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.converter input[type="number"]:-ms-input-placeholder {
  color: #999;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.converter input[type="number"]::-ms-input-placeholder {
  color: #999;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.converter input[type="number"]::placeholder {
  color: #999;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.converter input[type="number"]:focus::-webkit-input-placeholder {
  opacity: 0;
}

.converter input[type="number"]:focus:-ms-input-placeholder {
  opacity: 0;
}

.converter input[type="number"]:focus::-ms-input-placeholder {
  opacity: 0;
}

.converter input[type="number"]:focus::placeholder {
  opacity: 0;
}

.converter .dropdown-toggle {
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}

.converter .form-control {
  display: block;
  border: 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 18px;
  line-height: 1.3333333;
  font-weight: normal;
}

.converter .dropdown-menu {
  padding-bottom: 0;
}

.converter .bootstrap-select.btn-group .no-results {
  margin: 0;
  background-color: #fff;
  padding: 5px 10px;
}

.converter .dropdown-menu > li > a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 18px;
  width: 100%;
}

.converter .dropdown-menu > li > a span.valute {
  display: inline-block;
  font-weight: bold;
  margin-left: 5px;
}

.converter .dropdown-menu > li > a span.flag-icon {
  display: inline-block;
  vertical-align: baseline;
}

.converter .dropdown-menu > li > a small {
  display: inline-block;
  color: #999;
}

.converter .filter-option span.valute {
  margin-left: 3px;
}

.converter .bootstrap-select .dropdown-toggle:focus,
.converter a:focus {
  outline: none !important;
}

.converter .btn-default:focus,
.converter .btn-default.focus {
  border-color: #ccc;
  background-color: #fff;
}

.converter .btn:focus,
.converter .btn:active:focus,
.converter .btn.active:focus,
.converter .btn.focus,
.converter .btn:active.focus,
.converter .btn.active.focus {
  outline: none;
}

.converter .btn-default:hover {
  background-color: #fff;
  border-color: #ccc;
}

.converter .name-result {
  display: inline-block;
  margin-left: 5px;
  font-size: 14px;
}

.converter .filter-option span.valute {
  font-weight: bold;
}

.converter .filter-option small {
  color: #999;
}

.converter .result-container {
  width: 100%;
  min-height: 37px;
}

.converter button.swap,
.converter button.setting,
.converter button.reset {
  display: block;
  position: absolute;
  top: 8px;
  right: 4px;
  width: 40px;
  padding: 0;
  border: 0;
  margin: 0;
  background-color: #fff;
  text-align: center;
}

.converter button.swap i,
.converter button.setting i,
.converter button.reset i {
  font-size: 18px;
  color: #999;
  -webkit-transition: -webkit-transform .35s linear;
  transition: -webkit-transform .35s linear;
  transition: transform .35s linear;
  transition: transform .35s linear, -webkit-transform .35s linear;
}

.converter button.swap i:hover,
.converter button.setting i:hover,
.converter button.reset i:hover {
  color: #333;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.converter button.setting {
  right: 40px;
}

.converter button.reset {
  right: 75px;
}

.converter button.reset:hover i {
  color: rgba(255, 0, 0, 0.75);
}

.converter #setting {
  padding-top: 10px;
}

.converter #setting span {
  font-size: 14px;
  display: inline-block;
}

.converter input[type="number"].input-setting {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  font-size: 14px;
  padding: 5px 0;
  margin-left: 4px;
  font-weight: bold;
  border: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.converter input[type="date"].input-setting {
  display: inline-block;
  width: 130px;
  border: 0;
  margin-left: 2px;
  font-weight: bold;
  font-size: 14px;
}

.converter input[type="checkbox"].input-setting {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  margin-left: 4px;
}

.converter .dropdown-menu > li > a span.flag-icon {
  vertical-align: middle;
  border-radius: 100%;
  font-size: 24px;
}

.converter .filter-option .flag-icon {
  border-radius: 100%;
}

.converter .detail-result {
  display: block;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  color: #666;
  opacity: 0;
  -webkit-transition: opacity .25s linear;
  transition: opacity .25s linear;
}

.converter .detail-result.show {
  opacity: 1;
}

.converter .result-container:hover .detail-result {
  opacity: 1;
}


.mg-custom-select-js {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  min-width: 26rem;
  min-height: 6rem;
}

.mg-custom-select {
  border-width: .1rem;
  border-style: solid;
  border-color: gray;
  padding: 4rem/2-.1rem;
  border-radius: 4rem;
  background-color: white;
  position: absolute;
  z-index: 3;
}

.mg-custom-select__button {
  border-width: 0;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: all $transition;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  font-size: 1.6rem;
  background-color: transparent;
}
.mg-custom-select__button::after {
   content: '';
   width: .8rem;
   height: .8rem;
   transform: rotate(45deg);
   transform-origin: 100% 50%;
   border: .2rem solid;
   border-top-color: transparent;
   border-right-color: blue;
   border-bottom-color: blue;
   border-left-color: transparent;
   display: inline-block;
   margin-left: 4rem / 4;
 }


.mg-custom-select__search {
  margin-top: 4rem / 4;
  margin-bottom: 4rem / 4;
  border: 0;
  border-bottom-width: .2rem;
  border-bottom-color: gray;
  border-bottom-style: solid;
  outline: none;
  color: black;
  font-size: 1.6rem;
  font-family: 'Montserrat', 'Myriad Pro', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}

.mg-custom-select__search__label {
  margin-top: 4rem / 2;
  display: inline-block;
}

.mg-custom-select__dropdown {
  transition: all $transition;
  max-height: 0;
  overflow: hidden;
}

.mg-custom-select__dropdown.opened {
  max-height: 35rem;
  overflow-y: auto;
}

.mg-custom-select__list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mg-custom-select__list__item {
  cursor: pointer;
  padding: 4rem/8 4rem/4;
}
.mg-custom-select__list__item:hover {
   background-color: blue;
   color: white;

}

.hidden {
  display: none !important;
}
.prelangue-area button{
  position: absolute;
  right: 5%;
  top: 5%;
  color: #fff;
  background-color: transparent;
  border: 0;
  font-size: 40px;
}


div#prelangue {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000;
}

.prelangue-area .logo img {
  width: 175px;
}

.prelangue-area {
  text-align: center;
  padding: 15px;
  justify-content: center;
  margin: auto;
}

.prelangue-area select {
  padding: 10px 15px;
  margin: 25px 0px 0px;
  width: 150px;
  border-radius: 14px;
}

.redboa-fixed-sidebar {

  width: 272px;
}

.prelangue-area p {
  display: block;
  padding: 0;
  margin: 0;
  color: #fff;
  line-height: 21px;
  padding: 15px 0px 0px;

  text-align: center;
  margin: auto;
}