header,
	nav,
	main,
	footer,
	section,
	aside {
	  display: block;
	  position: relative;
	}

	html {
	  scroll-behavior: smooth;
	}

	html,
	body {
	  width: 100%;
	  max-width: 100%;
	  overflow-x: hidden;
	}

	body {
	  background: #FFF;
	  font-family: 'Montserrat', sans-serif;
	  color: #111;
	  font-size: 17px;
	  font-weight: 400;
	  line-height: 1.58em;
	  margin: 0;
	  padding: 0;
	}
	@media screen and (max-width: 992px) {
		body {
			font-size: 15px;
		  }
	}

	.fonts {
		font-family: 'Cormorant Garamond', serif;
		font-family: 'Marcellus', serif;
		font-family: 'Montserrat', sans-serif;
		font-family: 'Nanum Myeongjo', serif;
	}


	/*  HEADER */

	header {
	  background-color: #fff;
	  max-width: 100%;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  margin: auto;
	  z-index: 9999;
	  box-shadow: 0 0 20px 3px rgb(0 0 0 / 10%);
	}
	#m-logo {
	  display: inline-block;
	  max-width: 275px;
	}


	/*  SOCIAL */

	ul.social {
	  display: block;
	  margin: 0;
	  padding: 0;
	  list-style: none;
	}
	ul.social li {
	  display: inline-block;
	  padding: 0;
	}
	ul.social li a,
	ul.social li a:visited {
	  display: block;
	  color: #fff;
	  font-size: 18px;
	  text-align: center;
	  text-decoration: none;
	  outline: 0;
	  border: 0;
	  margin: 0;
	  padding: 0;
	  transition: all 0.5s;
	}
	ul.social li a:hover {
	  color: #0067b1;
	  text-decoration: none;
	  border: 0;
	  outline: 0;
	}
	@media screen and (max-width: 992px) {
	}


	/* NAVIGATION */

	#mobile-nav-btn {
	  color: #070606;
	  font-size: 19px;
	  margin: 0 15px;
	  cursor: pointer;
	  position: relative;
	  z-index: 9999;
	}

	#mobile-phone-btn {
	  color: #070606;
	  font-size: 19px;
	  cursor: pointer;
	  position: relative;
	  z-index: 9999;
	}
	#mobile-phone-btn a,
	#mobile-phone-btn a:visited {
	  color: #070606;
	  text-decoration: none;
	  outline: 0;
	  border: 0;
	}

	
	

	/* 1st level nav */
	nav {
	  display: inline-block;
	}
	nav ul {
	  display: inline-block;
	  margin: 0;
	  padding: 0;
	  list-style: none;
	}
	nav ul li {
	  display: inline-block;
	  padding: 0 12px;
	  position: relative;
	}
	nav ul li:last-child {
	  padding-right: 0;
	}
	nav ul li a,
	nav ul li a:visited {
	  display: inline-block;
	  color: #070606;
	  font-size: 12px;
	  font-weight: 600;
	  text-decoration: none;
	  letter-spacing: 0.65px;
	  text-transform: uppercase;
	  outline: 0;
	  border: 0;
	  position: relative;
	  transition: all 0.5s;
	}
	nav ul li a:hover {
	  color: #249ed1;
	  text-decoration: none;
	  outline: 0;
	  border: 0;
	}
	nav ul li a:hover:after {
	  content: '';
	  width: 100%;
	  height: 1px;
	  position: absolute;
	  background-color: #249ed1;
	  left: -2px;
	  bottom: -2px;
	}

	/*  2nd level */

	nav ul li ul {
	  display:none;
	  background: rgb(255,255,255);
	  background: rgba(255,255,255,0.85);
	  position:absolute;
	  top:100%;
	  left:0;
	  padding-top:10px;
	  z-index:999;
	}
	nav ul li:hover > ul {
	  display:block;
	}
	nav ul li ul li {
	  display:block;
	  line-height:1;
	  text-align:left;
	  width:175px;
	  margin:0;
	  padding:0;
	  border-bottom:solid 1px rgb(0,0,0);
	  border-bottom:solid 1px rgba(0,0,0,.1);
	  border-right:0;
	  position:relative;
	}
	nav ul li ul li a,
	nav ul li ul li a:visited {
	  display:block;
	  color: #070606;
	  font-size:13px;
	  line-height:16px;
	  text-decoration:none;
	  padding:8px 10px;
	  outline:0;
	  border:0;
	}
	nav ul li ul li a:hover {
	  display:block;
	  background-color: #249ed1;
	  color: #fff;
	  text-decoration:none;
	  outline:0;
	  border:0;
	}




	/* MAIN */

	#main {
		padding-top: 65px;
	}
	@media screen and (max-width: 992px) {
		#main {
			padding-top: 50px;
		}
	}

	a.link,
	a.link:visited {
	  color: #249ed1;
	  text-decoration: none;
	}
	a.link:hover {
	  color: #249ed1;
	  text-decoration: underline;
	}

	a.link-black,
	a.link-black:visited {
	  color: #070606;
	  text-decoration: none;
	}
	a.link-black:hover {
	  color: #070606;
	  text-decoration: underline;
	}

	a.link-white,
	a.link-white:visited {
	  color: #fff;
	  text-decoration: none;
	}
	a.link-white:hover {
	  color: #fff;
	  text-decoration: underline;
	}

	.white {
	  color: #fff;
	}
	.bg-white {
	  background-color: #fff;
	}

	.black {
	  color: #070606;
	}
	.bg-black {
	  background-color: #070606;
	  color: #fff;
	  border-top: solid 2px #333;
	  border-bottom: solid 5px #249ed1;
	}

	.gray {
	  color: #eee;
	}
	.bg-gray {
	  background-color: #eee;
	}

	.dk-gray {
	  color: #333;
	}
	.bg-dk-gray {
	  background-color: #333;
	}

	.blue {
	  color: #249ed1;
	}
	.bg-blue {
	  background-color: #249ed1;
	}




	.flex {
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	}

	.img-cover img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}

	/*  blocks */

	figure.block-image {
		display: inline-block;
		margin: 20px 0;
		padding: 0;
		width: 100%;
		height: 650px;
		overflow: hidden;
	}
	figure.block-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	@media screen and (max-width:992px) {
		figure.block-image {
			height: auto;
		}
	}

	/*  articles */

	#articles a,
	#articles a:visited {
		display: block;
		background-color: #fff;
		color: #070606;
		text-decoration: none;
		outline: 0;
		border: solid 2px #000;
		transition: all 0.5s;
		position: relative;
	}
	#articles a:hover {
		text-decoration: none;
		outline: 0;
		border-color: #000;
	}
	#articles h3 {
	    background: rgb(0,0,0);
		background: rgba(0,0,0,0.5);
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: auto;
		padding: 20px;
		color: #fff;
		margin: 0;
		box-sizing: border-box;
	}
	#articles a h3,
	#articles a:visited h3,
	#articles a p {
		color: #fff;
		text-decoration: none;
		outline: 0;
		border: 0;
	}
	#articles p {
		font-size: 11px;
		margin: 0 10px;
	}
	figure.block-article-image {
		display: block;
		margin: 0;
		padding: 0;
		width: 100%;
		height: 500px;
		outline: 0;
		border: 0;
		overflow: hidden;
		position: relative;
		transition: all 0.5s;
	}
	figure.block-article-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: all 0.5s;
	}
	#articles a:hover figure.block-article-image img {
		height: 110%;
	}
	@media screen and (max-width: 992px) {
		figure.block-article-image {
			height: 450px;
		}
	}
	

	


	h1,
	h2,
	h3,
	h4,
	h5 {
		font-family: 'Marcellus', serif;
		font-weight: 600;
	    line-height: 1.1em;
	}
	@media screen and (max-width: 992px) {
		h1,h2,h3,h4,h5  {
			line-height: 1.05em;
		}
	}

	h1 {
	  font-size: 40px;
	  margin: 10px 0 20px;
	}
	h1 small {
		display: block;
		color: #249ed1;
		font-size: 21px;
		text-transform: uppercase;
		margin: 0 0 -2px;
		letter-spacing: .75px;
	}
	@media screen and (max-width: 992px) {
		h1 {
		  font-size: 32px;
		}
		h1 small {
			margin: 0 0 -2px;
		  }
	}
	@media screen and (max-width: 575px) {
		h1 {
		  font-size: 24px;
		}
		h1 small {
			margin: 0;
		  }
	}



	h2 {
	  color: #070606;
	  font-size: 42px;
	  margin: 15px 0;
	}
	h2 small {
		display: block;
		color: #249ed1;
		font-size: 22px;
		font-weight: 500;
		letter-spacing: .75px;
		text-transform: uppercase;
		margin: 0 0 -5px;
	}
	h2.vl {
	    font-size: 75px;
	}
	@media screen and (max-width: 992px) {
	  h2 {
		font-size: 32px;
		margin: 5px 0 10px;
	  }
	  h2 small {
		margin: 0 0 -2px;
	  }
	  h2.vl {
	    font-size: 45px;
	}
	}
	@media screen and (max-width: 767px) {
	  h2 {
		font-size: 28px;
	  }
	  h2 small {
		margin: 0;
	  }
	  h2.vl {
	    font-size: 35px;
	}
	}


	h3 {
		font-size: 28px;
		line-height: 1.2em;
		margin: 15px 0;
	}
	h3 strong {
		font-weight: 800;
	}
	h3 small {
		display: block;
		color: #249ed1;
		font-size: 19px;
		text-transform: uppercase;
		margin: 0;
		letter-spacing: .75px;
	}
	@media screen and (max-width: 992px) {
	  h3 {
		font-size: 26px;
	  }
	}
	@media screen and (max-width: 767px) {
	  h3 {
		font-size: 22px;
	  }
	}


	h4 {
	  font-size: 22px;
	}
	@media screen and (max-width: 767px) {
		h4 {
		  font-size: 18px;
		}
	}


	h5 {
	  font-size: 18px;
	}

	.text-lg p {
	  font-size: 20px;
	  line-height: 25px;
	}

	.img-round {
		border-radius: 50%;
	}
	p.quote {
		font-size: 21px;
		font-style: italic;
		line-height: 32px;
		margin-left: 15px;
		padding: 15px 25px;
		border-left: solid 3px #249ed1;
	}
	@media screen and (max-width: 1400px) {
		p.quote {
			font-size: 19px;
			line-height: 30px;
			margin-left: 10px;
			padding: 12px 20px;
			border-left: solid 2px #249ed1;
		}
	}



	/*----------  HOME BANNER */

	#home-banner {
		overflow: hidden;
	}
	#home-banner img {
		width: 100%;
		height: auto;
	}

	/*----------  SLIDESHOW */

	.carousel-inner figure {
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 38% 0 0;
		transition: all 0.5s;
	}
	  @media screen and (max-width: 767px) {
	      .carousel-inner figure {
    		padding: 55% 0 0;
    	  }
	  }
	  
	  .slide-1 {
		background-image: url('../images/banner-roman-cathedral.jpg');
		background-position: top center;
	  }
	  .slide-2 {
		background-image: url('../images/banner-plane-sunrise.jpg');
		background-position: top center;
	  }
	  .slide-3 {
		background-image: url('../images/banner-topsail-beach.jpg');
		background-position: center center;
	  }
	  .slide-4 {
		background-image: url('../images/banner-sunset.jpg');
		background-position: top center;
	  }
	  .slide-5 {
		background-image: url('../images/banner-roman-colosseum-outside.jpg');
		background-position: top center;
	  }
	  .slide-6 {
		background-image: url('../images/banner-roman-colosseum.jpg');
		background-position: top center;
	  }
	  .slide-7 {
		background-image: url('../images/banner-florence-italy.jpg');
		background-position: center center;
	  }
	  .slide-8 {
		background-image: url('../images/banner-christ-the-redeemer.jpg');
		background-position: top right;
	  }
	  .slide-9 {
		background-image: url('../images/banner-imbituba.jpg');
		background-position: top left;
	  }
	  .slide-10 {
		background-image: url('../images/banner-barranco-peru.jpg');
		background-position: center center;
	  }
	  @media screen and (max-width: 767px) {
	      .carousel-inner figure {
	        background-position: top center;
    		padding: 80% 0 0;
    	  }
		  .slide-1 {
			background-image: url('../images/mobile-roman-cathedral.jpg');
		  }
		  .slide-2 {
			background-image: url('../images/mobile-airplane-skyline.jpg');
		  }
		  .slide-3 {
			background-image: url('../images/mobile-hudson-valley.jpg');
		  }
		  .slide-4 {
			background-image: url('../images/mobile-koda.jpg');
		  }
		  .slide-5 {
    		background-image: url('../images/mobile-roman-colosseum.jpg');
    	  }
    	  .slide-6 {
    		background-image: url('../images/mobile-the-last-supper.jpg');
    	  }
    	  .slide-7 {
    		background-image: url('../images/mobile-hiking-nc.jpg');
    	  }
    	  .slide-8 {
    		background-image: url('../images/mobile-christ-the-redeemer.jpg');
    	  }
    	  .slide-9 {
    		background-image: url('../images/mobile-floripa.jpg');
    	  }
	  }



	/*  BANNER */

	#banner {
	  background-repeat: no-repeat;
	  background-position: center center;
	  background-size: cover;
	  height: auto;
	  position: relative;
	  transition: all 0.5s;
	  overflow: hidden;
	}
	#banner img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	





	/*----------  PAGES */

    #nomadic-travelers {
        background-image: url('../images/bg-floripa.jpg');
        background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		background-attachment: fixed;
        color: #fff;
        border-bottom: solid 3px #249ed1;
    }
    #nomadic-travelers h2 {
        color: #fff;
        line-height: 1.1em;
    }
    #nomadic-travelers p {
        font-size: 19px;
    }
    #nomadic-travelers:before {
        content:'';
        background-color: #070606;
        background-color: rgba(7,6,6,0.8);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99;
    }
    #nomadic-travelers .row {
        position: relative;
        z-index: 999;
    }
    @media screen and (max-width: 767px) {
		#nomadic-travelers {
			background-attachment: scroll;
		}
		#nomadic-travelers p {
            font-size: 16px;
        }
	}
	
	


	@media screen and (max-width: 767px) {
		#slant {
			clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0 5%);
		}
	}
	.showcase {
		display: block;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		background-attachment: fixed;
		width: 100%;
		height: 75vh;
	}
	@media screen and (max-width: 767px) {
		.showcase {
			background-attachment: scroll;
		}
	}
	.bg-spices {
		background-image: url('../images/spices.jpg');
	}
	.bg-kitchen {
		background-image: url('../images/bg-kitchen.jpg');
	}
	.bg-floripa {
		background-image: url('../images/bg-floripa.jpg');
	}
	.bg-florence {
		background-image: url('../images/florence-italy-ponte-vecchio.jpg');
	}

	
	.bg-globe {
		background: url('../images/globe.jpg') no-repeat center left / cover;
		color: #fff;
		font-size: 115%;
		line-height: 1.5em;
	}
	.bg-globe:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 99;
		background-color: rgba(7,6,6,0.75);
	}
	.bg-globe .container {
		position: relative;
		z-index: 999;
	}


	#hear-your-story h2 {
		margin-bottom: 20px;
		transition: all 0.5s;
	}

	#hear-your-story .row {
		margin-top: -4rem;
		z-index: 999;
	  }
	  @media screen and (max-width: 992px) {
		#hear-your-story .row {
		  margin-top: 0;
		}
	  }


	#jobs article {
		background: #f7f7f7;
		margin-bottom: 20px;
		padding: 30px 30px 20px;
	}


	#article h1 {
		font-size: 56px;
	}
	@media screen and (max-width: 992px) {
		#article h1 {
			font-size: 52px;
		}
	}
	@media screen and (max-width: 767px) {
		#article h1 {
			font-size: 46px;
		}
	}
	@media screen and (max-width: 575px) {
		#article h1 {
			font-size: 38px;
		}
	}


	/*----------  slick slide */

  .slick-slide {
	text-align:center;
	height: auto !important;
  }
  .slick-prev, 
  .slick-next {
	display: none;
	color: transparent;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent;
  }
  .slick-prev {
	left:0px;
  }
  .slick-prev:before {
	content:'';
	background: url('../images/arrow-left.png') no-repeat center center / 100%;
  }
  .slick-next {
	right:0px;
  }
  .slick-next:before {
	content:'';
	background: url('../images/arrow-right.png') no-repeat center center / 100%;
  }
  .slick-prev:before, 
  .slick-next:before {
	display:block;
	width:45px;
	height:75px;
	outline:0;
	border:0;
	position:relative;
	z-index:999;
  }
  .slick-prev:focus,
  .slick-next:focus {
	text-outline:none;
	outline:0;
	border:0;
  }
  @media screen and (max-width: 992px) {
	.slick-prev:before, 
	.slick-next:before {
	  width:30px;
	  height:65px;
	}
  }
  
  
  
  .slick-product-carousel h5 {
      min-height: 75px;
  }
  .slick-product-carousel figure {
      display: block;
      background-repeat: no-repeat;
	  background-position: center center;
	  background-size: cover;
      height: auto;
      margin: 0;
      padding: 65% 0 0;
  }
  @media screen and (max-width: 767px) {
      .slick-product-carousel h4 {
          min-height: 1px;
      }
  }




	/*  BUTTON */

	.bttn,
	.bttn:visited {
	  display: inline-block;
	  background-color: #070606;
	  color: #fff;
	  font-size: 13px;
	  font-weight: 500;
	  line-height: 1.5em;
	  text-align: center;
	  text-decoration: none;
	  text-transform: uppercase;
	  letter-spacing: 0.85px;
	  outline: 0;
	  border: solid 2px #249ed1;
	  border-radius: 35px;
	  padding: 11px 40px;
	  cursor: pointer;
	  transition: all 0.5s;
	}
	.bttn:hover {
	  background-color: #070606;
	  color: #249ed1;
	  text-decoration: none;
	  outline: 0;
	  border: solid 2px #fff;
	}

	.bttn-blue,
	.bttn-blue:visited {
	  background-color: transparent;
	  color: #249ed1;
	}
	.bttn-blue:hover {
	  background-color: #070606;
	  color: #249ed1;
	  border-color: #249ed1;
	}




	/* FORM */

	#c-form {
	  position: relative;
	}

	#c-form .form-control {
	  background-color: #f7f7f7;
	  color: #000;
	  font-size: 13px;
	  height: auto;
	  padding: 15px;
	}

	#c-form .form-group {
	  margin-bottom: 10px;
	  position: relative;
	}

	#c-form textarea.form-control {
	  height: 155px;
	  position: relative;
	}

	#c-form input[type="submit"] {
	  display: inline-block;
	  background-color: #070606;
	  color: #fff;
	  font-size: 13px;
	  font-weight: 500;
	  text-decoration: none;
	  text-transform: uppercase;
	  outline: 0;
	  border: solid 2px #fff;
	  border-radius: 0px;
	  padding: 10px 50px;
	  cursor: pointer;
	  transition: all 0.8s;
	}

	#c-form input[type="submit"]:hover {
	  background-color: #070606;
	  color: #fff;
	  border-color: #249ed1;
	}




	/*  FOOTER */

	footer {
	  background: #070606;
	  color: #fff;
	  font-size: 14px;
	  line-height: 1.5em;
	  clear: both;
	}
	footer hr {
	  background-color: #fff;
	}
	img#f-logo {
	  display: inline-block;
	  width: 100%;
	  max-width: 200px;
	  height: auto;
	}
	ul.f-nav {
	  margin-top: 0;
	  margin-bottom: 0;
	  padding: 0;
	  list-style: none;
	}
	ul.f-nav li {
	  display: inline-block;
	  padding: 0 10px;
	}
	ul.f-nav li a,
	ul.f-nav li a:visited {
	  display: inline-block;
	  color: #fff;
	  font-size: 11px;
	  font-weight: 500;
	  text-decoration: none;
	  text-transform: uppercase;
	  outline: 0;
	  border: 0;
	  transition: all 0.5s;
	}
	ul.f-nav li a:hover {
	  color: #249ed1;
	  text-decoration: none;
	  outline: 0;
	  border: 0;
	}





	/*----------  AFFILIATE DISCLAIMER */

	img#affiliate-disclaimer-btn {
		display: block;
		background-color: #070606;
		color: #fff;
		text-align: center;
		text-decoration: none;
		max-width: 50px;
		outline: 0;
		border: 0;
		padding: 5px;
		position: fixed;
		bottom: 0;
		left: 0;
		border-radius: 50%;
		z-index: 9999;
		transition: all 0.5s;
		cursor: pointer;
	}
	img#affiliate-disclaimer-btn:hover {
		max-width: 60px;
		outline: 0;
		border: 0;
	}
	@media screen and (max-width: 767px) {
		img#affiliate-disclaimer-btn {
			max-width: 40px;
		}
		img#affiliate-disclaimer-btn:hover {
			max-width: 50px;
		}
	}
	#disclaimer-ModalCenter img {
		display: block;
		margin: auto;
		max-width: 100px;
		border-radius: 50%;
		border: solid 2px #ddd;
		overflow: hidden;
	}
	#disclaimer-ModalCenter p {
		font-size: 14px;
		line-height: 20px;
		margin: 5px 0;
	}
	@media screen and (max-width: 767px) {
		#disclaimer-ModalCenter p {
			font-size: 12px;
			line-height: 17px;
		}
	}




	/*  AFFILIATES */

	#beachbound a,
	#beachbound a:visited {
		display: block;
		text-decoration: none;
		outline: 0;
		border: 0;
	}
	#beachbound a:hover {
		text-decoration: none;
		outline: 0;
		border: 0;
	}




	/*  DISCLAIMER */

	#disclaimer p {
	  color: #fff;
	  font-size: 10px;
	  line-height: 18px;
	}

	#disclaimer a,
	#disclaimer a:visited {
	  color: #fff;
	  text-decoration: none;
	  outline: 0;
	  border: 0;
	}

	#disclaimer a:hover {
	  color: #249ed1;
	  text-decoration: none;
	  outline: 0;
	  border: 0;
	}



	/*  SIDR */

	.sidr {
	  background: #070606;
	  display: none;
	  position: absolute;
	  position: fixed;
	  top: 0;
	  height: 100%;
	  z-index: 999999;
	  width: 260px;
	  overflow-x: none;
	  overflow-y: auto;
	  font-weight: 300;
	  color: #FFF;
	  border-right: solid 1px #249ed1;
	}

	.sidr .sidr-inner {
	  padding: 0 0 15px
	}

	.sidr .sidr-inner>p {
	  margin-left: 15px;
	  margin-right: 15px
	}

	.sidr.right {
	  left: auto;
	  right: -260px
	}

	.sidr.left {
	  left: -260px;
	  right: auto
	}

	.sidr ul {
	  display: block;
	  margin: 65px 0 0;
	  padding: 0;
	  border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.sidr ul li {
	  display: block;
	  margin: 0;
	  outline: none;
	  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	  position: relative;
	}

	.sidr ul li a {
	  display: block;
	  color: #FFF;
	  font-size: 16px;
	  font-weight: 600;
	  text-decoration: none;
	  padding: 12px 30px;
	}

	.sidr ul ul {
	  margin: 0;
	  padding: 0;
	  list-style: none;
	}

	.sidr ul li ul li {
	  line-height: 30px;
	}

	.sidr ul li ul li a {
	  background: rgba(0, 0, 0, 0.15);
	  font-size: 14px;
	  font-weight: 400;
	  padding: 7px 0 7px 30px;
	}

	.sidr ul li a:hover,
	.sidr ul li a.active {
	  background-color: #249ed1;
	  color: #fff;
	  text-decoration: none;
	  outline: none;
	  border: none;
	}

	.sidr ul li.dropdown>a::after {
	  content: "+";
	  color: #249ed1;
	  font-size: 18px;
	  position: absolute;
	  top: 5px;
	  right: 15px;
	}

	.sidr ul li.closed>a::after {
	  content: "-";
	  color: #249ed1;
	  position: absolute;
	  top: 5px;
	  right: 15px;
	}

	#close-sidr-btn {
	  display: block;
	  font-size: 16px;
	  color: rgba(255, 255, 255, 0.8);
	  position: absolute;
	  top: 15px;
	  right: 15px;
	  z-index: 999;
	  cursor: pointer;
	}




	/*----------------------------------  GLOBAL MEDIA QUERIES */

	@media screen and (max-width: 1200px) {}

	@media screen and (max-width: 992px) {}

	@media screen and (max-width: 767px) {}

	@media screen and (max-width: 575px) {}