@font-face {
    font-family: "Silka";
    src: url("../fonts/Silka/Silka-Regular.otf");
}

@font-face {
    font-family: "Silka-italic";
    src: url("../fonts/Silka/Silka-RegularItalic.otf");
}
@font-face {
    font-family: "Silka-light";
    src: url("../fonts/Silka/Silka-Light.otf");
}

@font-face {
    font-family: "Silka-bold";
    src: url("../fonts/Silka/Silka-Bold.otf");
}

@font-face {
    font-family: "Silka-MediumItalic";
    src: url("../fonts/Silka/Silka-MediumItalic.otf");
}

@font-face {
    font-family: "Silka-medium";
    src: url("../fonts/Silka/Silka-Medium.otf");
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}




body {
    font-family: Silka;
}

header {
    top: 0;
    width: 100%;
    height: 174px;
    background-image: url("../images/png/header-bg@2x.png");
}

.header-bar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 46px);
    padding: 23px 28px;
}

.header-bar .icon-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30%;
}

.header-bar .icon-nav .icon {
    height: 29px;
    width: 100px;
    z-index: 3;
}

.header-bar .icon-nav .icon img{
    width: 100%;
    height: 100%;
}

.title {
    position: relative;
    color: #ffffff;
}

.title h1 {
    font-size: 35px;
}

#menuToggle {
    display: block;
    -webkit-user-select: none;
    user-select: none;
    z-index: 3;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 30px;
    position: absolute;
    cursor: pointer;
    right: 25px;
    opacity: 0;
    z-index: 4;
    margin: 0;
    -webkit-touch-callout: none;
}

#menuToggle span {
    margin-top: 5px;
    z-index: 3;
    display: block;
    width: 22px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #f8bb65;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
        opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-8px, 8px);
    background: #232323;
}

#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(-12px, -4px);
}

#menu {
    position: fixed;
    text-align: center;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 90%;
    background: rgba(26, 98, 50, 0.95);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(0, -100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.menu-element-wrapper {
    min-width: 215px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-element {
    padding-top: 40px;
}

.menu-element a{
    color: #ffffff;
    font-size: 19px;
    text-decoration: none;
}

.menu-element a:hover{
    opacity: .8;
}

#menuToggle input:checked ~ ul {
    transform: none;
}

.nav-element, .login {
    display: none;
}

.main {
    height: 100%;
    width: 100%;
    background: #f4f4f4;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 33px 28px 25px 28px;
    min-height: calc(100vh - 276px);
}

.register {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-title h2 {
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    color: #1a6232;
}

.register-title p {
    font-size: 16px;
    color: #000000;
    opacity: 0.5;
    padding-top: 11px;
}

.register-form > a {
    display: none;
}

.register-form form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-form select {
    width: 319px;
}

.register-form input {
    width: 289px;
    font-family: Silka;
}

.register-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
}


.register-form-select {
    position: relative;

}

.register-form-select:after {
    content: '\f078';
    font: normal normal normal 13px/1 FontAwesome;
    color: #1a6232;
    right: 27px;
    padding: 15px 0px 0px 8px;
    position: absolute;
    pointer-events: none;
}

.register-form-select select {
    display: none;
}

.select-selected {
    background-color: #f4f4f4;
    height: 40px;
    color: #000;
    opacity: 0.7;
    font-size: 14px;
    border-radius: 20px;
    margin-top: 22px;
    display: flex;
    border: solid 1px #979797;
    cursor: pointer;
    user-select: none;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

.select-items div {
    color: #3c3c3c;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.select-items {
    position: absolute;
    background-color: #f4f4f4;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-right: solid 1px #979797;
    border-left: solid 1px #979797;
    border-bottom: solid 1px #979797;
    border-radius: 0 0 20px 20px;
    width: 100%;
}

.select-hide {
    display: none;
}

.select-selected.select-arrow-active {
    border-radius: 20px 20px 0 0;

}

.nav-elements {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}


.select-items::before {
    width: 271px;
    height: 2px;
    opacity: 0.4;
    border: solid 1px #979797;
}

.select-items div:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.select-items .same-as-selected {
    font-size: 16px;
    font-weight: bold;
    color: #268e3c;
}

.register-form input {
    height: 40px;
    opacity: 0.7;
    font-size: 14px;
    background-color: transparent;
    padding-left: 30px;
    border-radius: 20px;
    margin-top: 22px;
    border: solid 1px #979797;
}

.register-form input:focus, select:focus {
    outline: none;
}

.register-form input::-webkit-input-placeholder {
    color: #000000;
 }

.form-button {
    border-radius: 19.5px;
    background-color: #34ba61;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    border: none;
    width: 179px;
    height: 38px;
    margin-top: 138px;
    font-family: Silka;
}

.form-button:hover {
    opacity: .8;
    cursor: pointer;
}

.banner {
    width: 318px;
    height: 125px;
    margin-top: 58px;
}

.desktop {
    display: none;
}

.banner img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.register-form-select-group {
    width: 319px;
}

footer {
    display: none;
}

.progress {
    height: 33px;
    display: flex;
    align-items: center;
    position: relative;
    top: -120px;
}

.timeline {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .li {
    transition: all 500ms ease-in;
  }

  .timestamp {
    margin-bottom: 20px;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 100;
  }

  .first-status {
    padding: 0px 30px;
    display: flex;
    justify-content: center;
    border-top: 9px solid #D6DCE0;
    position: relative;
    transition: all 500ms ease-in;
  }
  .first-status:before {
    content: "";
    width: 33px;
    height: 33px;
    background-color: #d8d8d8;
    border-radius: 25px;
    border: 1px solid #ddd;
    position: absolute;
    top: -20px;
    left: -1px;
    transition: all 500ms ease-in;
  }
  .li.complete .first-status {
    border-top: 9px solid #34ba61;
  }
  .li.complete .first-status:before {
    background-color: #34ba61;
    border: none;
    transition: all 200ms ease-in;
  }

  .first-status p {
    transform: translate(-19px, -11px);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }

  .status p {
    transform: translate(0, -11px);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }

  .last-status p {
    transform: translate(19px, -11px);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }

  .status {
    padding: 0px 43px;
    display: flex;
    justify-content: center;
    border-top: 9px solid #D6DCE0;
    position: relative;
    transition: all 200ms ease-in;
  }

  .status:before {
    content: "";
    width: 33px;
    height: 33px;
    background-color: #d8d8d8;
    border-radius: 25px;
    border: 1px solid #ddd;
    position: absolute;
    top: -20px;
    left: 32%;
    transition: all 200ms ease-in;
  }

  .li.complete .status {
    border-top: 9px solid #34ba61;
  }
  .li.complete .status:before {
    background-color: #34ba61;
    border: none;
    transition: all 200ms ease-in;
  }

 .last-status {
    padding: 0px 30px;
    display: flex;
    justify-content: center;
    border-top: 9px solid #D6DCE0;
    position: relative;
    transition: all 200ms ease-in;
  }
  .last-status:before {
    content: "";
    width: 33px;
    height: 33px;
    background-color: #d8d8d8;
    border-radius: 25px;
    border: 1px solid #ddd;
    position: absolute;
    top: -20px;
    left: 53%;
    transition: all 500ms ease-in;
  }

  .li.complete .last-status {
    border-top: 9px solid #34ba61;
  }
  .li.complete .last-status:before {
    background-color: #34ba61;
    border: none;
    transition: all 500ms ease-in;
  }

@media (min-width: 600px){

    .login-mobile{
        display: none;
    }
    
    header {
        top: 0;
        width: 100%;
        height: 303px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-bar {
        height: calc(100% - 71px);
        max-width: 1170px;
        width: calc(100% - 270px);
        padding: 46px 135px 24px 135px;
    }

    .title h1 {
        font-size: 50px;
    }

    #menuToggle {
        display: none;
    }

    .header-bar .icon-nav .icon {
        height: 38px;
        width: 130px;
    }

    .nav-elements .nav-element {
        margin-right: 30px;
    }

    .nav-element, .login {
        display: block;
    }

    nav .nav-elements {
        list-style: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .nav-element a {
        text-decoration: none;
        font-size: 14px;
        color: #ffffff;
    }

    .nav-element:hover, .login:hover {
        cursor: pointer;
        opacity: .8;
    }

    .nav-elements .login .login-btn {
        border-radius: 19.5px;
        border: solid 1px #ffffff;
        background-color: rgba(0, 0, 0, 0.19);
        height: 38px;
        width: 191px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-elements .login a {
        color: #f8bb65;
        text-decoration: none;
        padding-left: 7px;
    }

    .main-content {
        padding: 41px 135px 65px 135px;
    }

    .register {
        width: calc(100% - 512px);
        max-width: calc(1170px - 512px);
        height: calc(883px - 73px);
        padding: 58px 256px 25px 256px;
        background-color: #fff;
        border-radius: 20px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.09);
    }

    .register-title {
        text-align: center;
    }

    .register-title p {
        font-size: 13px;
    }

    .register-options {
        width: 262px;
    }

    .register-form {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 37px;
    }

    .register-form-select:after {
        top: 21px;
    }

    .select-selected {
        background-color: #fff;
    }

    .select-items {
        background-color: #fff;
    }

    .register-form input {
        width: 658px;
        height: 40px;
    }

    .register-form select {
        width: 313px;
        height: 40px;
    }

    .register-form-select-group {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .register-form-select {
        width: 45%;
        background-color: transparent;
    }

    .register-form > a {
        display: block;
        font-size: 14px;
        width: 262px;
        color: #8d8d8d;
        margin-top: 18px;
    }

    .register-form > a:hover {
        opacity: .8;
    }

    .banner {
        max-width: 1170px;
        width: 100%;
        height: 142px;
        position: relative;
    }

    .banner-comment {
        position: absolute;
        display: flex;
        justify-content: space-around;
        align-items: baseline;
        top: 50%;
        width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .banner-comment {
        font-size: 30px;
        color: #fff;
        font-weight: 600;
    }

    .banner a {
        text-decoration: none;
        color: #fff;
    }

    .banner-comment p::first-letter {
        color: #f8bb65;
    }

    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }

    .form-button {
        margin-top: 59px;
    }
    .cta-button {
        border-radius: 19.5px;
        box-shadow: 0 4px 8px 0 rgba(21, 133, 43, 0.11);
        background-color: #34ba61;
        font-size: 12px;
        font-weight: 600;
        display: inline-block;
        padding: 10px 77px;
        margin-top: 26px;
    }

    .cta-button a{
        color: #ffffff;
        font-size: 12px;
        text-decoration: none;
    }

    .banner-button {
        padding: 10px 24px;
    }

    /*Footer*/

    footer {
        display: block;
        bottom: 0;
        width: 100%;
        height: 152px;
        background-color: #000000;
    }

    .footer-contanct {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 37px 134px 0 139px;
    }

    .footer-sammel-icon {
        width: 36.2px;
        height: 35.6px;
        display: inline-block;
        margin-right: 26px;
    }

    .footer-iugo-icon {
        width: 91.2px;
        height: 24.3px;
        display: inline-block;
    }

    .footer-icon {
        display: flex;
        align-items: center;
    }

    .footer-icon img {
        width: 100%;
        height: 100%;
    }

    .contact-elements {
        list-style: none;
        padding: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .contact-element {
        padding-right: 10px;
    }

    .contact-element a{
        text-decoration: none;
        padding-left: 7px;
        color: #ffffff;
    }

    .contact-element a:hover{
        opacity: .8;
    }

    /*fin footer*/

    .progress {
        order: -1;
        top: 0;
        margin-bottom: 54px;
    }


    .status:before {
        left: 39%;
    }

    .last-status, .first-status {
        padding: 0 56.5px;
    }

    .status {
        padding: 0 86.5px;
    }

    .last-status:before {
        left: 73%;
    }

    .first-status p {
        transform: translate(-45px, -11px);
    }

    .status p {
        transform: translate(-3px, -11px);
    }

    .last-status p {
        transform: translate(45px, -11px);
    }

}

@media (max-width: 600px){

    .web{
        display: none;
    }

    .title {
        display: none;
    }

    header {
        height: 90px;
    }
    
    .header-bar {
        justify-content: center;
    }

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

    .register-form-select:after {
        padding: 0;
        top: 15px;
    }

    .div-banner-mobile{
        margin-top: 2rem;
        width: 100%;
    }

    .mobile-banner-container{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        border-radius: 30px;           
    }

    .mobile-banner-discount-description{
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 25px;
        font-weight: bold;
        color: white;
        line-height: 28px;
        font-family: Silka-Bold;
    }

    .mobile-banner-discount-structure{
        background-image: url('../images/png/Discount-banner-background.png'); 
        background-size: cover; 
        min-height: 195px;
    }

    .mobile-banner-discount-secondary-description{
        font-weight: normal; 
        font-size: 16px; 
        margin-top: 5px; 
        font-family: Silka;
    }

    .mobile-banner-button{
        color: #34ba61;
        background-color: white;
        padding: 0.5rem 0;
        font-size: 14px;
        font-weight: bold;
        border-radius: 20px;
        min-width: 150px;
        display: flex;
        justify-content: center;
        text-decoration: none;
    }
}

.social-media{
    width: 32px;
    height: 32px;
}
