@import "https://fonts.googleapis.com/css?family=Muli:300,400,500,600,700";
:root {
    --primary-color: #842846;
    --third-color: #db4400;
    --secondary-color: #a04a67;
    --current-lk-color: #4c4e51;
    --disabled-color: #818181;
    --fourth-color: #d36e46;
    --dark-color: #191D21;
    --xdark-color: #111111;
    --light-color: #DDDDDD;
    --xlight-color: #e4e4e4;
    --white-color: #ffffff;
    --green-color:#8cc63f;
    --red-color:#ed1c24;
    --dt-row-selected: 238, 174, 64;
    --dt-row-selected-text: 221, 221, 221;
    --dt-row-selected-link: 89, 186, 133;
}
/* Reset */
* {
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
/* Main Styling */
html,body {
    line-height: 19px;
    background-color: var(--dark-color);
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--xlight-color);
    min-height: 100vh;
}
body{
    /*overflow: hidden;*/
}
.text-green{
    color:var(--green-color)
}
.text-gray{
    color:var(--current-lk-color)
}
.text-red{
    color:var(--red-color)
}
.text-center{
    text-align: center;
}
.bg-dark{background-color: var(--dark-color)}
.bg-xdark{background-color: var(--xdark-color)}
#myColor{
    filter: invert(0)
}
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.5s ease;
    cursor: pointer;
}
.header a {
    color: var(--xlight-color);
    text-decoration: none;
    transition: color 0.5s ease;
    cursor: pointer;
}
a:hover {
    opacity: 0.8;
}
.header a:hover{
    color: var(--secondary-color);
    text-decoration: none;
}
small{
    font-style: italic;
}
h1, h2, h3, h4 {
    font-weight: 300;
    padding: 10px 10px 10px 0
}
h1 {
    font-size: 21px;
    line-height: 25px;
}
h2 {
    font-size: 18px;
    line-height: 22px;
}
h3 {
    font-size: 16px;
    line-height: 25px;
}
h4 {
    font-size: 14px;
    line-height: 16px;
}
h5 {
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
}
p {
    margin: 5px 0;
    font-weight: 300;
    padding: 5px 10px 5px 0;
}
.light{
    color: var(--disabled-color);
}
.etiq{
    text-align: center;
    background-color: var(--secondary-color);
    border-radius: 10px;
    font-size: 24px;
    padding: 10px 10px;
}
.etiq>p{
    font-size: 16px;
}
.mt-40{
    margin-top: 40px;
}
.mb-20{
    margin-bottom: 20px;
}
.my-40{
    margin-top: 40px;
    margin-bottom: 40px;
}
.my-20{
    margin-top: 20px;
    margin-bottom: 20px;
}
.my-30{
    margin-top: 30px;
    margin-bottom: 30px;
}
.pt-30{
    padding-top: 30px;
}
.pt-40{
    padding-top: 40px;
}
.pt-20{
    padding-top: 20px;
}
.pt-10{
    padding-top: 10px;
}
.pb-30{
    padding-bottom: 30px;
}
.py-30{
    padding-top: 30px;
    padding-bottom: 30px;
}
.text-secondary{
    color:var(--secondary-color)
}
.text-third{
    color:var(--third-color)
}
.container {
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    margin:auto;
    position: relative;
    min-height: 100vh;
}
.main-content {
}
.middle{
    height: 50vh;
    padding: 40px;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.header {
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--xdark-color);
    z-index: 100;
}
.intro{
    background-color: #e0d2bb;
    background-image: url("../images/headerFondXL.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.detail{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-items: flex-start;
    justify-content: space-around;
    align-content: center;
    margin-bottom: 40px;
}
.itemIndex, itemContact{
    width: 400px;
    padding: 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item, .item-small{
    max-width: 400px;
    padding: 25px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item-small{
    max-width: 300px;
}
.contact{
    display: flex;
    flex-direction: column;
    border: 1px solid var(--third-color);
    border-radius: 5px;
    background-color: var(--xdark-color);
    padding: 20px;
    align-items: center;
}
.contact form .itemContact{
    justify-content: flex-start;
    width: 360px;
    margin-right: 10px;
    border: none;
    background-color: var(--xdark-color);

}
.item-title{
    color: var(--third-color);
    font-size: 21px;
    text-align: center;
    padding: 0 0 15px 0;
}
.contact form{
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.contact .form-wrap{
    width: 360px;
}
#menu>ul>li, #tools>ul>li, #connect>ul>li, #tools>ul>li>ul>li{
    list-style: none;
    display: inline-block;
    margin-right: 20px;
}
#services{
    list-style: none;
    display: none;
}
.footer-wmi {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--xdark-color);
    padding: 20px;
    bottom: 20px;
}
.btn{
    border: 2px solid var(--xdark-color);
    padding: 5px;
    border-radius: 3px;
    cursor:pointer;
}
.btn:hover{
   color: var(--secondary-color);
}

.btn-action{
    width: 100%;
    margin-top: 30px;
    background: var(--third-color);
    color: var(--xdark-color);
    border: 1px solid var(--third-color);
    padding: 10px;
    font-size: 14px;
}
.btn-action:hover{
    background: var(--xdark-color);
    color: var(--third-color);
}
/* Style The Dropdown Button */
.dropbtn {
    color: var(--xlight-color);
    padding: 16px;
    background-color: var(--dark-color);
    font-size: 16px;
    border: none;
    cursor: pointer;
}

#price{
    text-align: center;
    
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark-color);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 2px solid var(--xdark-color);
    border-radius: 0 0 10px 10px;
    transition: all ease-in 0.3s;
}
/* Links inside the dropdown */
.dropdown-content a {
    color: var(--xlight-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all ease-in 0.3s;
}
.dropdown-content a>.current, .droplink .current{
    color: var(--third-color);
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    color: var(--secondary-color);
    background-color: var(--xdark-color);
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    transition: all ease-in 0.3s;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    color: var(--secondary-color);
    transition: all ease-in 0.3s;
}
.form-wrap {
    margin: auto;
    margin-top: 40px;
    background-color: var(--xdark-color);
    opacity: 0.9;
    max-width: 360px;
    padding: 15px 25px;
    line-height: 23px;
    z-index: 10;
}

.form-wrap h1,
.form-wrap p {
    text-align: center;
}

.form-wrap .form-group {
   margin-top: 15px;
    border-radius: 5px;
}

.form-group label {
   display: block;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
}

.form-wrap .form-group input,.contact .form-group input, .contact .form-group textarea{
   width: 100%;
    padding: 10px;
    border: var(--secondary-color) 1px solid;
    border-radius: 5px;
    background: var(--dark-color);
    color: var(--light-color);
    font-size: 14px;
}
.form-group select {
    width: 100%;
    padding: 10px;
    border: var(--secondary-color) 1px solid;
    border-radius: 5px;
    background: var(--dark-color);
    color: var(--light-color);
    font-size: 14px;
    /*appearance: none;*/
}
option:hover {
    background: var(--secondary-color);
}

.form-wrap button, .contact button {
    /*
      Button should wrap accross 100% and display as block
      Background color for button is #49c1a2
    */
    width: 100%;
    display: block;
    margin-top: 30px;
    font-size: 16px;
    padding: 15px 25px;
    border-radius: 5px;
    background-color: var(--third-color);
}

.form-wrap button:hover, .contact button:hover {
    /*
      Hover background color for button is #37a08e
    */
    color: var(--third-color);
    background-color: var(--xdark-color);
    border-color: var(--third-color);
}

.form-wrap .bottom-text {
    font-size: 14px;
    margin-top: 20px;
}
.pointer{
    cursor: pointer;
}

.form-wrap footer {
   text-align: center;
    margin-top: 10px;
    font-size: 14px;
    border-top: 1px solid var(--third-color);
}

.form-wrap footer a {
    color: var(--secondary-color);
}
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus,  input[type=number]:focus {
    outline: none;
}
input[type=number]{
width: 100%;
padding: 10px;
border: var(--secondary-color) 1px solid;
border-radius: 5px;
background: var(--dark-color);
color: var(--light-color);
font-size: 14px; }
.modal {
    display: none;
    position: absolute;
    top:140px;
    margin: auto;
    right: 0;
    left: 0;
    border: 1px solid var(--third-color);
    border-radius: 5px;
}
.modal:active ~ .main-content {
    opacity: 0.5;
}
.text-slide{
    margin-left:35%;
    height: 360px;
    padding-top: 60px;
    font-size: 50px;
    line-height: 55px;
    padding-right: 40px;
    color: var(--secondary-color);
}
.text-slide span{
    color: var(--third-color);
    font-weight: 700;
}
.dots-container{
    text-align: center;
}
.dot{
    cursor: pointer;
    height: 16px;
    width: 16px;
    margin: 0 2px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease-in;
}
.active, .dot:hover{
    /*background-color: var(--third-color);*/
}
.fade {
    animation: fade 0.5s ease-out;
}
@keyframes fade {
    from{
        opacity: 0.2;
    }
    to {
        opacity: 1;
    }
    
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
}
h5 {
    color: var(--xdark-color);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.5;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 800px;
}

/*.message {*/
/*    background-color: var(--third-color);*/
/*    color: var(--xdark-color);*/
/*    display: block;*/
/*    font-weight: 700;*/
/*    overflow: hidden;*/
/*    position: absolute;*/
/*    top: 0.2rem;*/
/*    left: 430px;*/
/*}*/
.boost{
   
}
.flex-content{
    display: flex;
    flex-direction: row;
}
.boost{
    font-weight: 700;
}
.current{
    color: var(--third-color) !important;
}
.quantity {
    position: relative;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]
{
    -moz-appearance: textfield;
}

.quantity input {
    width: 90px;
    height: 42px;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    border: 1px solid var(--secondary-color);
}

.quantity input:focus {
    outline: 0;
}

.quantity-nav {
    float: left;
    position: relative;
    height: 42px;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border-left: 1px solid var(--secondary-color);
    width: 25px;
    text-align: center;
    color: var(--light-color);
    font-size: 18px;
    font-family: Helvetica, sans-serif !important;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    line-height: 21px;
}

.quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    top: 0;
    border-bottom: 1px double var(--secondary-color);
}

.quantity-button.quantity-down {
    position: absolute;
    bottom: 0;
    height: 50%;
}