@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

body {
    margin:0;   
    padding:0;
    width: 100%;
    background-color: #070707;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color:rgb(169, 169, 169);
  }

  html {

    --fontSizeH1: 1.6em;
    --fontSizeH2: 1.4em;
    --fontSizeTxt: 1.2em;
    --fontSizeNav: 1.1em;
  
    font-size: calc(var(--fontSizeTxt) * 0.9);
    line-height:160%;
  }

  ul {
    font-size: calc(var(--fontSizeTxt) * 0.8);
    line-height:130%;
  }

  p {
    margin:0;
    padding-bottom:8px;
  }

  h1 {
    color:rgb(255, 255, 255);
    font-size: calc(var(--fontSizeH1) * 0.9);
    line-height:100%;
  }

  h2 {
    color:rgb(255, 255, 255);
    font-size: calc(var(--fontSizeH2) * 0.9);
    line-height:120%;
  }


  #nav {
    position: fixed;
    display: flex;
    flex-flow: row wrap;
    justify-content:start;
    list-style: none;
    top:0;
    left:0;
    margin: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(107, 31, 6, 0.7);
    font-size: calc(var(--fontSizeNav) * 0.8);
    text-transform: uppercase;

}

a {
    color: rgb(252, 137, 70);
    text-decoration: none; 
    text-shadow: 1px 1px 4px  black;

}

a:hover {
    color: rgb(220, 85, 7);

}

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

input, textarea, select {
    display:block;
    padding-top:10px;
    padding-bottom:10px;
    padding-left:10px;
    width: 95%;
    margin-bottom:20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: calc(var(--fontSizeTxt) * 0.9);
    border-radius: .3em;
}

select, button {
    width:98%;
}

#nav  c-item {
    display: block;
    margin: 0;
    padding: 6px;
    padding-left:20px;
    top:0;
}

.continue {
    font-size: 70px;
    font-variation-settings: 'OPSZ' 30;
    width:100%;
    margin-top:40px;
    margin-bottom:300px;
    text-align:center;
  }

  .icone {
    font-size: 70px;
    font-variation-settings: 'OPSZ' 30;
    padding-right:10px;
  }

  .phone {
    font-size: 20px;
    font-weight: 400;
    
    }


c-container{
    display:block;
	max-width:1500px;             
	margin:auto;
    margin-top: 0;
    padding-right:2%;
    background-image: url('../images/bg.jpg');
    background-repeat: no-repeat;
    background-size:100%;
    background-position: center; 
    background-position-y:0;
    background-attachment: fixed;
}

c-intro {
    padding-top:180px;
    padding-left: 60px;
    display:block;

    h1 {
        display:block;
        padding-bottom:40px;
        font-size: calc(var(--fontSizeTxt) * 3);
        text-shadow: 1px 2px 10px  black;
    }

}

c-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    list-style: none;
    width: 92%;
    padding: 0;
    margin-left: 4%;
    padding-top: 30px;
    padding-bottom: 30px;
}

c-footer {
    display:block;
    height:250px;
    content: "&nbsp;"
}


c-col2 {
    display: block;
    width: 46%;
    padding: 2%;
    margin: 0;
}


c-col1 {
    display:block;
    width:96%;
    padding: 2%;
    margin: 0;
}

c-agenda {
    color:rgb(255, 255, 255);
    font-size: calc(var(--fontSizeH1) * 0.9);
    line-height:100%;
}

.blackBg {
    background-color: rgba(16, 16, 22, 0.78);
}

.grayBg {
    background-color: rgba(51, 51, 72, 0.78);
}

a-left, a-scale, a-fade {
    display: block;
    margin: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
}


.a-scaleIn {
    animation: scaleIn 0.7s;
    animation-fill-mode: forwards;
}

.a-scaleOut {
    animation: scaleOut 0.7s;
    animation-fill-mode: forwards;
}

@keyframes scaleOut {
    0% {opacity: 1; transform: scale(1);}
    100% {opacity: 0; transform: scale(0.95);}
}


@keyframes scaleIn {
    0% {opacity: 0; transform: scale(0.95);}
    100% {opacity: 1; transform: scale(1);}
}

.a-leftIn {
    animation: leftIn 0.7s;
    animation-fill-mode: forwards;
}

.a-leftOut {
    animation: leftOut 0.7s;
    animation-fill-mode: forwards;
}

@keyframes leftOut {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {opacity: 0; transform: translate(2%, 0);}
}


@keyframes leftIn {
    0% {
        opacity: 0;
        transform: translate(2%, 0);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}


.a-fadeIn {
    animation: fadeIn 1.5s;
    animation-fill-mode: forwards;
}

.a-fadeOut {
    animation: fadeOut 1.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.rlBtnDisabled {
    display:block;
    padding-top:10px;
    padding-bottom:10px;
    width: 95%;
    margin-bottom:20px;
    font-size: calc(var(--fontSizeTxt) * 1);
    background-color: rgb(205, 132, 90);
    color :rgb(113, 87, 72);
    border-radius: .3em;

}

.rlBtn {
    display:block;
    padding-top:10px;
    padding-bottom:10px;
    width: 95%;
    margin-bottom:20px;
    font-size: calc(var(--fontSizeTxt) * 1);
    background-color: rgb(220, 85, 7);
    border-radius: .3em;
}

.rlBtn:hover {
    background-color: rgb(214, 50, 1);

}

.rlInput_text, .rlInput_textarea, .rlInput_date {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    width: 95%;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: calc(var(--fontSizeTxt) * 0.9);
    border-radius: .3em;
}

.rlInputErr_text, .rlInputErr_textarea, .rlInputErr_date {
    background-color: #e8d0cd;
    color: #22558c;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    width: 95%;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: calc(var(--fontSizeTxt) * 0.9);
    border-radius: .3em;
}

textarea:focus, input:focus {
    outline: none;
}

.rnTip {
    display: none;
}

.rlTip {
    position: relative;
    display: inline-block;
}

    .rlTip .rlTiptext {
        visibility: hidden;
        width: 300px;
        border-radius: .3em;
        background-color: #f1f1fc;
        border: 1px solid #22558c;
        color: #8d1616;
        text-align: center;
        padding: 10px 0;
        position: absolute;
        z-index: 1;
        bottom: 98%;
        left: 5%;
        margin-left: 10px;
        font-size: calc(var(--fontSizeTxt) * 0.9);
        opacity: 0;
        transition: opacity 0.6s;
    }

        .rlTip .rlTiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 40px;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    .rlTip:hover .rlTiptext {
        visibility: visible;
        opacity: 1;
    }

.modal {
    display:none;
    position: fixed; 
    z-index: 2000; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7); 
}

/* Modal Content */
.modalContent {
    background-color: rgba(87, 87, 123, 0.78);
    color:white;
    font-weight: 300;
    margin: auto;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 60%;
    border-radius: .3em;
    cursor: pointer;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


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

    html {
        font-size: calc(var(--fontSizeTxt) * 0.85);
     }

    #nav {
        font-size: calc(var(--fontSizeNav) * 0.85);
    }

    #nav  c-item {
        padding: 5px;
        padding-left:15px;
    }

    .continue {
        font-size: 60px;
        font-variation-settings: 'OPSZ' 30;
        width:100%;
        margin-top:30px;
        margin-bottom:250px;
        text-align:center;
      }

    c-intro {

        padding-top:150px;
        padding-left: 50px;

        h1 {
            font-size: calc(var(--fontSizeTxt) * 2.2);
            padding-bottom:30px;
            color:rgb(255, 255, 255)
        }
    }   

    c-col2 {
        display:block;
        width:98%;
        padding: 2%;
        margin: 0;
    }


}

@media screen and (min-width: 1500px) {

    html {
        font-size: calc(var(--fontSizeTxt) * 0.9);
    }

    #nav {
        font-size: calc(var(--fontSizeNav) * 0.9);
    }

    #nav  c-item {
        padding: 7px;
        padding-left:25px;
    }

    c-container{
        background-size:1500px;
    }
}