/*---------------------------------------------------------------------------------

Master Stylesheet

	Template:	 Unika - Responsive One Page HTML5 Template
	Author:		 imransdesign.com
	URL:		 http://imransdesign.com/
    Designed By: https://www.behance.net/poljakova
	Version:	1.0	

---------------------------------------------------------------------------------*/
/* === BUTTON WRAPPER (ONLY for Programm, Flyer, Navettes) === */
/* ======= Your existing style.css content goes here ======= */
/* … (all your base styles, layout rules, etc.) … */

.program-flyer-navette-container {
    display: flex;
    justify-content: center; /* Centers buttons */
    align-items: center;
    gap: 8px; /* Keeps space between buttons */
    flex-wrap: wrap; /* Allows wrapping */
}

/* === INDIVIDUAL BUTTON STYLES === */
.program-flyer-navette-container .btn-blank {
    flex: none; /* Prevents buttons from stretching */
    width: 160px; /* Keeps consistent size */
    text-align: center;
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap; /* Prevents text from breaking */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* === 📱 MOBILE FIX (STACK BUTTONS UNDER EACH OTHER) === */
@media (max-width: 768px) {
    .program-flyer-navette-container {
        flex-direction: column; /* Stack buttons */
        align-items: center;
        gap: 10px; /* Space between buttons */
    }

    .program-flyer-navette-container .btn-blank {
        width: 80%; /* Make buttons take most of the width */
        max-width: 250px; /* Prevent them from getting too big */
        font-size: 14px;
        padding: 12px;
    }
}


html {
	height: 100% !important;
}
body {
	position: relative;
	height: 100%;
	font-size: 14px;
	color: #363940;
	
}
#navettesModalBtn {
  font-size: 0.9rem; /* Slightly smaller text */
  padding: 8px 20px; /* Smaller padding */
  border-radius: 25px; /* Match rounded style but smaller */
    background-color: grey !important;
}

#navettesModalBtn:hover {
  transform: scale(1.1); /* Subtle hover effect */
}


.toggle-btn {
    flex: 1;
    margin: 0 5px;
    background-color: #3498db;
    border: none;
    color: white;
    padding: 14px 22px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-btn:hover {
    background-color: #2980b9;
}

/* Close Button */
.navettes-modal .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 35px;
    color: #777;
    cursor: pointer;
}

.navettes-modal .close:hover {
    color: #d9534f;
}

/* ===== 📱 MOBILE FIX (Make Images HUGE on Phones) ===== */
@media (max-width: 768px) {
    .navettes-modal-content {
        width: 100%;
        max-width: 100vw;
        max-height: 100vh;
        padding: 10px;
    }

    #navettesImage1, #navettesImage2 {
        max-width: 100vw; /* Full screen width */
        max-height: 95vh; /* Almost full screen height */
    }
}

/* ===== 📱 EXTREME SMALL SCREENS (iPhone SE, etc.) ===== */
@media (max-width: 500px) {
    .navettes-modal-content {
        padding: 5px;
    }

    #navettesImage1, #navettesImage2 {
        max-width: 100%;
        max-height: 90vh;
    }
}



/* ===== 📌 PROGRAM MODAL (NOW SEPARATED) ===== */
.program-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow: auto; /* Allows scrolling */
}

.program-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 700px;
    position: relative;
}

/* Close button */
.program-modal .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    color: #777;
    cursor: pointer;
}

.program-modal .close:hover {
    color: #d9534f;
}
/* Center align the text inside the Program Modal */
.program-modal .modal-day {
    text-align: center;
}

/* Ensure list items are centered properly */
.program-modal .modal-day ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

/* Center-align list items */
.program-modal .modal-day ul li {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}


.button-container {
    display: flex;
    justify-content: center; /* Center-align buttons */
    gap: 15px; /* Space between buttons */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    margin-top: 15px;
}

.button-container a {
    flex: none; /* Prevents buttons from stretching */
    width: auto; /* Allow buttons to adjust to content */
    min-width: 180px; /* Prevents too-small buttons */
    max-width: 250px; /* Prevents buttons from becoming too wide */
    text-align: center; /* Ensure text stays centered */
    padding: 10px 15px;
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden; /* Ensures no overflow */
    text-overflow: ellipsis; /* Adds "..." if text overflows */
}

/* Ensure buttons stack only on very small screens */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 10px;
    }

    .button-container a {
        width: 100%; /* Make buttons full width on very small screens */
        max-width: none;
    }
}

/* ===== MODAL STYLES (General) ===== */
/* ===== 📌 FLYER MODAL (SEPARATED) ===== */
.flyer-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow: auto; /* Allows scrolling */
}

.flyer-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: auto;
    max-width: 1020px;
    transition: width 0.3s ease-in-out;
}

/* Default single flyer size */
.flyer-modal-content.flyer-normal {
    width: 500px;
}

/* Expanded size when Flyer 2 (Front & Back) is active */
.flyer-modal-content.flyer2-active {
    width: 1020px;
    max-width: 1020px;
}

/* Close button */
.flyer-modal .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    color: #777;
    cursor: pointer;
}

.flyer-modal .close:hover {
    color: #d9534f;
}

/* ===== 📌 FLYER IMAGE STYLES ===== */
.flyer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}

/* Single flyer */
.flyer-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out;
}

/* Flyer 2 (Front & Back next to each other) */
#flyer2Container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 100%;
}

/* Ensure Flyer 2 images are the same size */
#flyer2Container img {
    width: 50%;
    max-width: 500px;
    height: 700px; /* Keep the same height */
    object-fit: cover;
}

/* Hide Flyer 2 by default */
#flyerImage {
    display: block;
}

#flyer2Container {
    display: none; /* Hidden initially */
}

/* ===== 📱 MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .flyer-modal-content {
        width: 95%;
        max-width: 450px;
        overflow: hidden; /* Prevents horizontal scrolling */
    }

    /* Make Flyer 2 smaller but still next to each other */
    #flyer2Container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 5px;
    }

    #flyer2Container img {
        width: 45%; /* Smaller width */
        max-width: 180px; /* Fits mobile */
        height: auto;
    }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 500px) {
    #flyer2Container {
        flex-direction: row;
        gap: 2px;
    }

    #flyer2Container img {
        width: 47%;
        max-width: 160px;
    }
}

body .body {
	height: 100%;
}
.cover {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 46, 82, 0.15);
	padding: 20px;
}
.page {
  overflow: hidden;
  background-color: #fff;
padding-top: 3%;
  padding-bottom: 2%;
}
/* Reglement Modal */
#pdfModal {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  animation: fadeIn 0.3s ease-out;
}

#pdfModal .modal-content {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideDown 0.3s ease-out;
  text-align: center;
}

#pdfModal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #555;
  cursor: pointer;
}

#pdfModal .close:hover {
  color: #d9534f;
}

#pdfModal h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
}

#pdfModal .button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

#pdfModal .button-group button {
  background-color: #3498db;
  border: none;
  color: white;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#pdfModal .button-group button:hover {
  background-color: #2980b9;
}
/* Program Modal */
#fuesweekendModal {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  animation: fadeIn 0.3s ease-out;
}

#fuesweekendModal .modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 700px;
  position: relative;
  animation: slideDown 0.3s ease-out;
}

#fuesweekendModal .close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #777;
  cursor: pointer;
}

#fuesweekendModal .close:hover {
  color: #d9534f;
}

#fuesweekendModal .modal-title {
  text-align: center;
  color: #34495e;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 15px;
}

#fuesweekendModal .modal-day h4 {
  margin-top: 20px;
  color: #2980b9;
  font-size: 18px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
}

#fuesweekendModal .modal-day ul {
  color: #555;
  padding-left: 20px;
  font-size: 16px;
}

#fuesweekendModal .modal-day ul li {
  margin-bottom: 8px;
}

/* Responsive Adjustments */
@media (max-width: 500px) {
  #fuesweekendModal .modal-content {
    padding: 20px;
  }
  #fuesweekendModal .modal-title {
    font-size: 18px;
  }
  #fuesweekendModal .modal-day ul {
    font-size: 14px;
  }
}
/* General Modal Styling */


/* Close Button */
.modal .close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #777;
  cursor: pointer;
}

.modal .close:hover {
  color: #d9534f;
}

/* Flyer Image Styling */
.flyer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flyer-img {
  width: 100%; /* Make it responsive */
  max-width: 500px; /* Ensures a fixed width */
  height: auto; /* Maintain aspect ratio */
  aspect-ratio: 5 / 7; /* Force consistent proportions */
  object-fit: cover; /* Ensures images look uniform */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-in-out;
}

/* Toggle Button */
.toggle-btn {
  background-color: #3498db;
  border: none;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.toggle-btn:hover {
  background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-width: 450px;
  }
  .flyer-img {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .flyer-img {
    max-width: 90%;
  }
  .toggle-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
}

* {
	border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
}
*:focus { 
	outline: none !important;
	box-shadow: none !important;
}

/* Begin Fonts */
body {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-weight: 700;
	margin-bottom: 10px;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 26px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
p {
	font: 14px/1.5em "Roboto";
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
}
.navbar-nav > li > a {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
}
/* End Fonts */


section {
	position: relative;
}
.page-loader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background: #FFF url(../img/page-loader.gif) center center no-repeat;
}
.devider {
	width: 100%;
	height: 23px;
	background: url('../img/devider.png') no-repeat center center;
	margin: 5px 0 10px;
}
.thumbnail {
	padding: 15px;
	margin-bottom: 20px;
	background-color: #FFF;
	border: 1px solid #DDD;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.form-control {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.parallax {
	position: relative;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
  	background-size: cover;
}

#header {
	/* height: 98px; */
}


/* ===== Begin text colors ===== */
.text-main { color: #363940; } /* Theme main color */
.text-white { color: #FFF; }
.text-off-white { color: #e7e7e7;}
.text-dark { color: #000; }


/* ===== Begin navbar ===== */
/* Reset for consistency */
* {
  box-sizing: border-box;
}

/* Navbar styling */
.navbar {
  margin: 0;
  border: none;
  background-color: #333; /* Dark background for contrast */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  min-height: 7rem;
}

/* Navbar brand (logo) */
.navbar-brand {
  display: block;
  background-image: url('../img/im.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 250px; /* Adjust as needed */
  height: 85px;
  text-indent: -9999px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

/* Navbar links container */
.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Navbar links */
.navbar-nav li {
  margin-left: 1.5rem;
}

.navbar-nav li a {
  color: #f0f0f0;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1rem 0;
  transition: color 0.3s ease;
}

.navbar-nav li a:hover,
.navbar-nav li a:focus {
  color: #ddd;
}

/* Social icon styling */
.social-icon {
  width: 40px !important;
  height: 40px !important;
  max-width: none !important;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;      /* Removed negative margin */
}


/* Responsive adjustments */
@media (max-width: 767px) {
  .navbar .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }
  
  .navbar-nav li {
    margin: 0.5rem 0;
    text-align: center;
    width: 100%;
  }
  
  .navbar-toggle {
    margin: 1rem;
  }
}
/*end navbar*/

/* Modal Container */
#fuesweekendModal .container {
  max-width: 800px;
  margin: 10% auto;
  background-color: #111; /* Modal content background */
  padding: 30px;
  border-radius: 10px;
  color: #fff;
 font-family: 'Roboto', Helvetica, Arial, sans-serif;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Modal Title and Text */
#fuesweekendModal h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

#fuesweekendModal h3 {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 15px;
}

#fuesweekendModal ul {
  list-style: none;
  padding: 0;
}

#fuesweekendModal ul li {
  margin-bottom: 15px;
}

#fuesweekendModal ul li h4 {
  font-size: 1.2rem;
  font-weight: bold;
}

#fuesweekendModal ul li p {
  font-size: 1rem;
  margin: 5px 0;
  line-height: 1.6;
}

/* Close Button Styling */
#fuesweekendModal .close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 1.8rem;
  color: red;
  cursor: pointer;
  font-weight: bold;
    opacity: 1;
}

#fuesweekendModal .close:hover {
  color: #03dbfc;
    opacity: 1;
}

/* See More Button */
/* Smaller Version of the Button */
#fuesweekendModalBtn {
  font-size: 0.9rem; /* Slightly smaller text */
  padding: 8px 20px; /* Smaller padding */
  border-radius: 25px; /* Match rounded style but smaller */
    background-color: grey !important;
}

#fuesweekendModalBtn:hover {
  transform: scale(1.1); /* Subtle hover effect */
}
#flyerModalBtn {
  font-size: 0.9rem; /* Slightly smaller text */
  padding: 8px 20px; /* Smaller padding */
  border-radius: 25px; /* Match rounded style but smaller */
    background-color: grey !important;
}

#flyerModalBtn:hover {
  transform: scale(1.1); /* Subtle hover effect */
}
/* Button Alignment */
#fuesweekend .text-center {
  margin-top: 20px;
}

/* Section Styling */
#fuesweekend {
  background-color: #000; /* Black background for section */
  color: #fff;
  padding: 50px 20px;
}

#fuesweekend .header {
  text-align: center;
}
.hover-link {
  color: #fff !important;
  text-decoration: underline !important;
  display: inline-block !important;
  transition: transform 0.3s ease-out, color 0.3s ease-out !important;
}

.hover-link:hover {
  transform: scale(1.1) !important;
  color: #0296c9 !important;
}

#fuesweekend .header .title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#fuesweekend .divider {
  width: 100px;
  height: 2px;
  background-color: #03dbfc;
  margin: 10px auto 20px;
}

/* ===== Begin intro ===== */
/* Begin text carousel intro */
#text-carousel-intro-section {
	height: 85%;
}
#text-carousel-intro-section .container {
	height: 100%;
}
#text-carousel-intro-section .caption {
	position: relative;
	top: 50%;
	margin-top: -70px;
}
#text-carousel-intro-section .caption h1 {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 45px;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}
#text-carousel-intro-section .caption p {
	letter-spacing: 2px;
	font-size: 16px;
}
/* End text carousel intro */
/* ===== End intro ===== */


/* ===== Begin roatet boxes ===== */
/* Begin rotate box-1 */
.rotate-box-1, .rotate-box-2 {
	display: inline-block;
	margin: 30px 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a.rotate-box-1, a.rotate-box-2 {
	text-decoration: none;
	color: #363940;
}
a.rotate-box-1:hover, a.rotate-box-2:hover {
	color: #676D75;
}
.rotate-box-1 .rotate-box-icon {
	display: inline-block;
	text-align: center;
	margin-bottom: 15px;
	margin-top: 10px;
	float:left;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.rotate-box-1.square-icon .rotate-box-icon, .rotate-box-2.square-icon .rotate-box-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	color: #FFF !important;
	font-size: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.rotate-box-1.square-icon .rotate-box-icon:after, .rotate-box-2.square-icon .rotate-box-icon:after {
	content: "";
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	border: 2px solid #FFF;
}
.rotate-box-1:hover.square-icon .rotate-box-icon , .rotate-box-2:hover.square-icon .rotate-box-icon{
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
.rotate-box-1.square-icon .rotate-box-icon .fa, .rotate-box-2.square-icon .rotate-box-icon .fa{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.rotate-box-1:hover.square-icon .rotate-box-icon .fa, .rotate-box-2:hover.square-icon .rotate-box-icon .fa{
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.rotate-box-1 .rotate-box-info a, .rotate-box-2 .rotate-box-info a {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.rotate-box-1 h4, .rotate-box-2 h4 {
	font-weight: 400;
}
.rotate-box-1 p {
	padding: 0 10px;
}
.rotate-box-1 .rotate-box-info {
	padding-left: 60px;
}

/* End rotate box-1 */


/* Begin rotate box-2 */
.rotate-box-2 .rotate-box-icon {
	display: inline-block;
	text-align: center;
	margin-bottom: 15px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.rotate-box-2.square-icon .rotate-box-icon {
	width: 75px;
	height: 75px;
	line-height: 75px;
	font-size: 36px;
}

.rotate-box-2.square-icon .rotate-box-info {
	margin-top: 30px;
}
/* End rotate box-2 */
/* ===== End rotate boxes ===== */


/* ===== Begin progress bar ===== */
.skill-bar {
}
.progress {
	overflow: visible;
	height: 25px;
	margin-bottom: 20px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.progress .percent {
	position: relative;
	background-color: #222;
	padding: 7px;
	color: #FFF;
	top: -23px;
}
.progress .percent:after {
	content: "";
	position: absolute;
	left: 50%;
	margin-left: -4px;
	bottom: -4px;
	width: 0;
	height: 0;
	border-left: 4px solid rgba(0, 0, 0, 0);
	border-right: 4px solid rgba(0, 0, 0, 0);
	border-top: 4px solid #222;
}
.progress-bar {
	font-size: 10px;
	line-height: 7px;
	text-align: right;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.progress-lebel h6{
	margin-bottom: 10px;
	letter-spacing: 2px;
}
/* ===== End progress bar ===== */


/* Begin cta section */
#cta-section {
	padding: 70px 0 80px;
}
.cta-btn {
	margin-top: 30px;
}
/* End cta section */




/* ===== Begin Counter-Up ===== */
.counter-up {
	position: relative;
	background-color: #171717;
	padding: 80px 0 50px 0;
}
.counter-up .cover {
	background-color: rgba(0, 7, 11, 0.8);
}
.counter-up .fact {
}
.counter-up .fact.last {
	border-right: none;
}
.counter-up .fact-inner {
	padding-bottom: 30px;
}
.counter-up .fact-inner .counter {
	font-size: 60px;
}
/* ===== End Counter-Up ===== */




/* ===== Begin partners ===== */
#partners-section {
  padding-top: 3%;
  padding-bottom: 4%;
}
.partners {
	background-color: #252320;
}
.item h1{
    font-weight: bold;
}
.item p{
    font-weight: bold;
}
.item a{
    font-weight: bold;
}
.item h1{
    color: #03dbfc;
}

.partners img {
	max-width: 100%;
	padding: 0 15px;
}
/* ===== End partners ===== */


/* ===== Begin panels ===== */
.panel, .panel-heading, .panel-footer  {
}
/* ===== End panels ===== */





/* ===== Begin contact ===== */
#contact-section {
	position: relative;
	padding-top: 3%;
  padding-bottom: 3%;
}
#contact-section h4 {
	font-weight: 400;
}
#contact-section .cover {
	background-color: rgba(5, 8, 11, 0.93);
}
#contact-section .contact .contact-form {
	margin-bottom: 40px;
}
#contact-section .contact .contact-form h4 {
	margin-bottom: 25px;
}
#contact-section .contact .contact-form .input-lg {
	font-size: 14px;
}
#contact-section .contact .contact-form button {
	width: 100%;
	height: 40px;
}
#contact-section .contact .contact-form button:hover {
	color: #fff;
}
#contact-section .contact .form-control {
	background-color: rgba(255, 255, 255, 0.06);
	border-color: #2A2A2A;
}
#contact-section .contact .form-control:focus {
	background-color: #171717;
	box-shadow: none;
}

ul.contact-address {
	float: left;
	width: 100%;
	padding: 0;
	margin: 15px 0 ;
}
ul.contact-address li {
	padding: 0 0 20px;
	margin: 0;
}
ul.contact-address li:last-child {
	padding-bottom: 0;
}
ul.contact-address li i {
	margin-right: 10px;
}
/* ===== End contact ===== */


/* ===== Begin footer ===== */
.footer-top {
	padding: 60px 0 35px;
}
.footer-top .col-md-4 {
	margin-bottom: 25px;
}
.footer {
	padding: 20px 0;
}
.footer a{
	text-decoration: none;
}

/*Widget1: Useful Links*/
ul.imp-links {
	margin-top: 15px;
}
ul.imp-links li {
	padding: 5px 0;
}
ul.imp-links li a {
	text-decoration: none;
	color: #fff;
}

/*Widget2: subscribe form*/
#subscribe #result {
    display: block;
    width: 100% !important;
}
#footer_signup {
    margin: 20px 0;
}
#subscribe > input[type="text"] {
    border: 0 none;
    color: #99abb7;
    font-style: italic;
    font-size: 0.9em;
    padding: 7px 10px;
    width: 170px;
    height: 30px;
}
#subscribe > button[type="submit"] {
    background: none repeat scroll 0 0 #21c2f8;
    border: 0 none;
    color: #ffffff;
    font-style: normal;
    font-weight: 300;
    padding: 7px 20px;
    height: 30px;
    transition: all 0.4s ease-in;
}

/*Widget3: twitter*/
.single-tweet {
    overflow: hidden;
    padding-bottom: 15px;
    padding-top: 10px;
    word-spacing: 2px;
}

.tweet-content {
    padding-bottom: 10px;
    line-height: 1.5em;
}
/* ===== End footer ===== */


/* ===== Begin page header ===== */
.page-header {
	margin: 0 0 60px 0;
	padding: 0;
	border: none;
}
.page-header h2 {
	text-transform: uppercase;
}
p.subtitle {
	letter-spacing: 2px;
	margin-top: 10px;
}
/* ===== End page header ===== */


/* ===== Begin extra-space ===== */
.extra-space-m {
	width: 100%;
	height: 20px;
}
.extra-space-l {
	width: 100%;
	height: 40px;
}
.extra-space-xl {
	width: 100%;
	height: 60px;
}
.extra-space-xxl {
	width: 100%;
	height: 80px;
}
/* ===== End more-space ===== */


/* ===== Begin OWL carousel ===== */
.owl-carousel {
	cursor: e-resize;
}
.owl-theme .owl-controls {
	margin-top: 30px;
}
.owl-theme .owl-controls .owl-page span {
	background: rgba(0, 0, 0, 0);
	width: 14px;
	height: 14px;
	border: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
	background: rgba(0, 0, 0, 0);
	border: 3px solid #fff;
}
.owl-buttons {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	width: 100%;
}
.owl-theme .owl-controls .owl-buttons div {
	position: absolute;
	width: 100px;
	height: 100px;
	line-height: 100px;
	margin: 0;
	text-align: center;
	background: transparent;
	opacity: 1;
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	opacity: .5;
}
.owl-next {
	background-image: url(../img/arrow-right.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	right: 0;
}
.owl-prev {
	background-image: url(../img/arrow-left.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	left: 0;
}
/* ===== End OWL carousel ===== */


/* ===== Begin buttons ===== */
.btn {
	position: relative;
	letter-spacing: 1.5px;
	border: none;
}
.btn:active {
	top: 2px;
}

/* Button default */
.btn-default, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active {
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

/* Button blank */
.btn-blank {
	border: 2px solid #fff;
	color: #fff;
	padding: 17px 25px;
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.btn-blank:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #03dbfc;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.btn-blank:hover, .btn-blank:focus, .btn-blank:active {
	color: #333;
}
.btn-blank:hover:before, .btn-blank:focus:before, .btn-blank:active:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

/* Button active */
.btn:active, .btn.active {
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.16);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.16);
}

/* Button large */
.btn-lg {
	font-size: 1.3em;
	padding: 10px 40px;
}
.btn-lg-xl {
	font-size: 1.4em;
	padding: 10px 80px;
}


/* Scroll to top button */
.scrolltotop {
	position: fixed;
	display: none;
	bottom: 20px;
	right: 30px;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	text-decoration: none;
	z-index: 9999;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.scrolltotop .fa {
	padding-left: 4px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* ===== End buttons ===== */