body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    height: 100%;
    width: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #83c237;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#myBtn:hover {
    background-color: #555;
}

/* ######################## HEADER ######################## */
.navbar{
    padding: 0 0 35px 0;
    color: white;
}

.logo{
    width: 200px;
    margin-top: -7px;
}

.nav-logo, .nav-container{
    display: inline-block;
    vertical-align: middle;
}

.nav-container{
    float: right;
}

.nav-menu{
    padding: 0;
    font-family: 'Viga', sans-serif;
    transition: all .2s;
}

.nav-platform{
    display: inline-block;
    padding: 0;
}

.nav-platform-name{
    display: inline-block;
    outline: none;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 0.04em;
    color: white;
    border: 0;
    background: transparent;
    text-align: center;
    width: 135px;
    padding: 5px 0;
}

.nav-platform-name:hover, .nav-platform-name:focus {
    color: #83c237;
    text-decoration: none;
    outline: 0;

}

.nav-platform-name:focus{
    background: white;
    color: #2a00cc;
}

.submenu{
    display: none;
    position: absolute;
    background: white;
    color: #2a00cc;
    text-align: left;
    z-index: 1;
}

.nav-platform-name:focus +.submenu, .submenu:hover{
    display: block;
    color: #2a00cc;
}

.submenu-list{
    display: block;
    padding: 10px;
    font-size: 18px;
    width: 135px;
}

.submenu-list:not(:last-child){
    border-bottom: 2px solid #ddd;
}

.submenu-list:hover{
    background: #ddd;
}

.submenu-list-link{
    text-decoration: none;
    width: 100%;
    display: block;
}

.nav-platform-logo{
    width: 25px;
    display: inline-block;
    vertical-align: middle;
}

#nav:checked + .nav-open {
    transform: rotate(45deg);
}
#nav:checked + .nav-open i {
    background: #fff;
    transition: transform 0.2s ease;
}
#nav:checked + .nav-open i:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
}
#nav:checked + .nav-open i:nth-child(2) {
    opacity: 0;
}
#nav:checked + .nav-open i:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
}
#nav:checked ~ .nav-container {
    z-index: 9990;
    opacity: 1;
}
#nav:checked ~ .nav-container ul li a {
    opacity: 1;
    transform: translateY(0);
}
.hidden {
    display: none;
}

.header{
    background: rgb(168,145,255);
    background: linear-gradient(312deg, rgba(168,145,255,1) 0%, rgba(42,0,204,1) 100%);
    height: auto;
    color: white;
    padding: 25px 12%;
}

.header-text, .header-image{
    display: inline-block;
    vertical-align: middle;
    margin-top: 25px;
}

.header-text{
    width: 44%;
}

.header-text-big{
    font-family: 'Viga', sans-serif;
    font-size: 50px;
}

.header-text-small{
    font-size: 22px;
    margin: 10px 0 30px 0;
}

.header-button{
    background-color: #a379d6;
    border-radius: 15px;
    border: none;
    color: white;
    padding: 12px 32px;
    width: 50%;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 22px;
    font-family: 'Viga', sans-serif;
    transition: all .2s;
}

.header-button:hover{
    background: #83c237;
}

.header-image{
    width: 45%;
    float: right;
    margin-top: -50px;
    padding-left: 25px;
}

.section{
    margin: 50px 0;
    padding: 50px 12%;
    text-align: center;
}

.section-styled{
    color: white;
    background: rgb(168,145,255);
    background: linear-gradient(100deg, rgba(168,145,255,1) 0%, rgba(128,99,239,1) 0%, rgba(92,57,224,1) 0%, rgba(42,0,204,1) 50%, rgba(98,64,227,1) 100%, rgba(138,110,243,1) 100%, rgba(168,145,255,1) 100%);
}

.section-title{
    font-family: 'Viga', sans-serif;
    font-size: 45px;
    color: #2a00cc;
    text-align: center;
    margin-bottom: 35px;
}

.section-title-styled{
    color: white;
}

.platform-card{
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #2a00cc;
    background: white;
    border-radius: 15px;
    width: 11%;
    text-decoration: none;
    transition: all .2s;
    -webkit-box-shadow: 10px 10px 0 -3px #a379d6;
    -moz-box-shadow: 10px 10px 0 -3px #a379d6;
    box-shadow: 10px 10px 0 -3px #a379d6;
}

.platform-card:not(:first-child) {
    margin-left: 10px;
}

.platform-card:hover{
    -webkit-box-shadow: 10px 10px 0 -3px #83c237;
    -moz-box-shadow: 10px 10px 0 -3px #83c237;
    box-shadow: 10px 10px 0 -3px #83c237;
}

.platform-icon{
    width: 125px;
    margin: 15px auto;
    display: block;
}

.platform-price{
    display: block;
    font-size: 20px;
    font-family: 'Viga', sans-serif;
    text-align: center;
    background: #2a00cc;
    color: white;
    padding: 10px 0;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
}

/* ######################## SECTION ######################## */

.image-right, .text-left{
    display: inline-block;
    vertical-align: middle;
}

.image-right{
    width: 44%
}

.text-left{
    padding-left: 25px;
    font-size: 18px;
    width: 55%
}

.section-paragraph{
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.5em;
}

/* ######################## SECTION ######################## */

.step-card{
    display: inline-block;
    vertical-align: middle;
    width: 49%;
    text-align: center;
    margin: 25px 0;
}

.step-icon{
    width: 150px;
    margin: 0 auto;
    display: block;
}

.step-info {
    margin-top: 30px;
    padding: 0 75px;
    letter-spacing: 1px;
    line-height: 1.5em;
    font-size: 18px;
}

.step-title{
    font-family: 'Viga', sans-serif;
    font-size: 27px;
}

.step-number{
    color: #83c237;
}

.step-text{
    margin-top: 15px;
}

/* ######################## SECTION ######################## */

.reason-card{
    padding: 50px 75px;
    width: 100%;
    margin-bottom: 35px;
    display: block;
    border: 3px solid #ddd;
    background: white;
    text-align: left;
}

.reason-info, .reason-image{
    display: inline-block;
    vertical-align: middle;
}

.reason-info{
    width: 59%;
    padding-right: 75px;
}

.reason-info-right{
    padding-left: 75px;
    padding-right: 0;
}

.reason-image{
    width: 40%;
}

.reason-title, .order-reason-title{
    font-family: 'Viga', sans-serif;
    font-size: 27px;
    color: #2a00cc;
}

.reason-text, .order-reason-text{
    margin-top: 30px;
    letter-spacing: 1px;
    line-height: 1.5em;
    font-size: 18px;
}

.line{
    margin: 25px auto 50px auto;
    display: block;
    width: 50%;
    background: #83c237;
    height: 1px;
}

.line-text{
    text-align: center;
    font-family: 'Viga', sans-serif;
    font-size: 22px;
}

.reason-button{
    background-color: #2a00cc;
    border-radius: 15px;
    border: none;
    color: white;
    padding: 12px 32px;
    width: 300px;
    margin: 15px auto 0 auto;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 22px;
    font-family: 'Viga', sans-serif;
    transition: all .2s;
    -webkit-box-shadow: 0 5px 4px 0 rgb(161, 161, 161);
    -moz-box-shadow: 0 5px 4px 0 rgb(161, 161, 161);
    box-shadow: 0 5px 4px 0 rgb(161, 161, 161);
}

.reason-button:hover, .support-button:hover{
    -webkit-box-shadow: 10px 10px 0 -3px #83c237;
    -moz-box-shadow: 10px 10px 0 -3px #83c237;
    box-shadow: 10px 10px 0 -3px #83c237;
}

/* ######################## FAQ ######################## */
.faq-container, .support-container{
    display: inline-block;
    vertical-align: top;
    width: 48%;
}

.faq-section{
    text-align: left;
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: 0;
}

.faq-card{
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 15px;
    /*padding-bottom: 4px;*/
    /*padding-top: 18px;*/
    background: #fff;
    box-shadow: 0 3px 10px -2px rgba(0,0,0,0.1);
    -webkit-tap-highlight-color: transparent;
}

.faq-card:last-of-type {
    padding-bottom: 0;
}

.open-faq{
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    touch-action: manipulation;
}

.open-faq:checked ~ .faq-question {
    color: #2a00cc;
}

.open-faq:checked ~ .faq-answer {
    /*margin-top: 0;*/
    max-height: 0;
    transition: .3s;
    opacity: 0;
    /*transform: translate(0, 50%);*/
}

.open-faq:checked ~ .open-faq-icon:before {
    transform: translate(2px, 0) rotate(45deg);
}

.open-faq:checked ~ .open-faq-icon:after {
    transform: translate(-2px, 0) rotate(-45deg);
}

.open-faq-icon{
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 28px;
    right: 15px;
}

.open-faq-icon:before, .open-faq-icon:after {
    transition: all 0.3s;
    content: "";
    position: absolute;
    background-color: #83c237;
    width: 3px;
    height: 9px;
}

.open-faq-icon:before {
    transform: translate(-2px, 0) rotate(45deg);
}
.open-faq-icon:after {
    transform: translate(2px, 0) rotate(-45deg);
}


.faq-question{
    color: #83c237;
    font-family: 'Viga', sans-serif;
    font-size: 25px;
    line-height: 34px;
    text-align: left;
    padding: 15px 15px 0;
    text-transform: none;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
    margin: 0;
    cursor: pointer;
    transition: .2s;
}

.faq-answer{
    color: #333;
    text-align: left;
    font-size: 18px;
    line-height: 1.5em;
    position: relative;
    overflow: hidden;
    max-height: 250px;
    will-change: max-height;
    contain: layout;
    display: inline-block;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 5px;
    margin-bottom: 15px;
    padding: 0 50px 0 15px;
    transition: .3s opacity, .6s max-height;
    hyphens: auto;
    z-index: 2;
}

.support-container{
    background: white;
    margin-left: 10px;
    color: #222;
    padding: 50px;
}

.support-title{
    font-family: 'Viga', sans-serif;
    font-size: 25px;
    text-align: center;
    display: block;
    color: #2a00cc;
}

.support-text{
    margin-top: 15px;
    letter-spacing: 1px;
    line-height: 1.5em;
    font-size: 18px;
    text-align: justify;
    padding: 0 20px;
}

.support-button{
    background-color: #2a00cc;
    border-radius: 15px;
    border: none;
    color: white;
    padding: 12px 32px;
    text-align: center;
    width: 200px;
    margin: 20px auto 0 auto;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-family: 'Viga', sans-serif;
    transition: all .2s;
    -webkit-box-shadow: 0px 5px 4px 0px rgb(161, 161, 161);
    -moz-box-shadow: 0px 5px 4px 0px rgb(161, 161, 161);
    box-shadow: 0px 5px 4px 0px rgb(161, 161, 161);
}

.section-bottom{
    background: rgb(225, 225, 225);
    margin:  0;
}

/* ######################## FOOTER ######################## */

.statistics-card{
    width: 24%;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.statistics-card-border{
    border-left: 1px solid #2a00cc;
}

.statistics-icon{
    width: 75px;
}

.statistics-icon, .statistics-info{
    display: inline-block;
    vertical-align: middle;
}

.statistics-info{
    margin-left: 10px;
}

.statistics-number, .statistics-title{
    display: block;
}

.statistics-number{
    font-family: 'Viga', sans-serif;
    font-size:35px;
    color: #2a00cc;
    text-align: left;
}

.footer{
    background: rgb(168,145,255);
    background: linear-gradient(150deg, rgba(168,145,255,1) 0%, rgba(42,0,204,1) 100%);
    height: auto;
    color: white;
    padding: 75px 12% 0 12%;
}

.footer-logo{
    width: 175px;
}

.footer-left, .footer-right{
    display: inline-block;
    vertical-align: top;
    width: 49%;
}

.footer-left{
    padding-right: 100px;
    text-align: justify;
    line-height: 1.5em;
}

.footer-right{
    text-align: right;
}

.links-container{
    display: inline-block;
    vertical-align: top;
    margin-left: 25px;
    text-align: left;
    line-height: 1.5em;
}

.links-container-title{
    display: block;
    font-family: 'Viga', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-link{
    display: block;
    text-decoration: none;
    color: white;
    margin-bottom: 3px;
}

.footer-bottom{
    width: 100%;
    display: block;
    text-align: center;
    padding: 15px 0 25px 0;
    border-top: 2px solid white;
    margin-top: 50px;
}


/* ###################################### NEW PAGE ######################################  */

.header-text-order{
    width: 100%;
    text-align: center;
    padding: 25px 0 50px 0;
}

.header-text-small-order{
    margin:0;
}

.order-page-services{
    text-align:center;
    padding: 25px 0;
    background: #2a00cc;
    margin: 25px 0;
    border-radius: 15px;
}

.order-service-card{
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    width: 20%;
    background: white;
    border-radius: 15px;
    text-align: center;
    transition: all .2s;
    text-decoration: none;
    color: #404040;
}

.order-service-card:hover{
    background: #d7d7d7;
}

.platform-service-icon{
    width: 80px;
    display: block;
    margin: 25px auto;
}

.order-service-card span{
    display: block;
}

.service-name{
    font-family: 'Viga', sans-serif;
    font-size: 20px;
}

.service-info{
    margin-top: 10px;
    padding: 10px 0;
    font-size: 18px;
    background: #a379d6;
    color: #181818;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.service-price{
    font-family: 'Viga', sans-serif;
    font-size: 24px;
}

.order-reason-icon, .order-reason-info{
    display: inline-block;
    vertical-align: middle;
}

.order-reason-icon{
    width: 125px;
    height: 125px;
}

.order-reason-info{
    width: 85%;
    margin-left: 15px;
}

.order-reason-title, .order-reason-text{
    margin: 0;
}

/* ###################################### MEDIA QUERY MOBILE ######################################  */
@media screen and (max-width: 600px) {
    .section-title{
        font-size: 35px;
        margin-bottom: 20px;
    }

    .section{
        margin: 25px 0;
        padding: 25px 2%;
        text-align: center;
    }

    /* ######################## HEADER ######################## */
    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background: #2a00cc;
        opacity: 0;
        transition: all 0.2s ease;
    }
    .nav-container ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }
    .nav-container ul li {
        display: block;
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-container ul li:not(:first-child) {
        margin-left: 0;
    }
    .nav-platform-name{
        padding: 25px 0;
        width: 100%;
        opacity: 0;
        color: white;
        font-size: 24px;
        font-weight: 600;
        transform: none;
        transition: all 0.2s ease;
    }
    .nav-open {
        position: fixed;
        right: 10px;
        top: 10px;
        display: block;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 9999;
        border-radius: 50%;
    }
    .nav-open i {
        display: block;
        width: 20px;
        height: 2px;
        background: #83c237;
        border-radius: 2px;
        margin-left: 14px;
    }
    .nav-open i:nth-child(1) {
        margin-top: 16px;
    }
    .nav-open i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }
    .nav-open i:nth-child(3) {
        margin-top: 4px;
    }

    .nav-platform-logo{
        width: 35px;
    }

    .header{
        padding: 15px 2%;
    }

    .header-text, .header-image{
        display: block;
        margin-top: 0;
    }

    .header-text{
        width: 100%;
        text-align: center;
    }

    .header-text-big{
        font-size: 35px;
    }

    .header-text-small{
        font-size: 18px;
    }

    .header-button{
        margin: 0 auto;
        font-size: 20px;
    }

    .header-button:hover{
        background: #83c237;
    }

    .header-image{
        width: 90%;
        padding-left: 0;
        margin: 15px auto;
    }

    /* ######################## SECTION ######################## */
    .platform-card{
        margin: 15px 10px;
        width: 40%;
    }

    .platform-card:not(:first-child) {
        margin-left: 10px;
    }

    .platform-icon{
        width: 90px;
        margin: 15px auto;
        display: block;
    }

    .platform-price{
        font-size: 18px;
    }

    /* ######################## SECTION ######################## */
    .image-right, .text-left{
        display: block;
    }

    .image-right{
        width: 90%;
        margin: 0 auto;
    }

    .text-left{
        padding-left: 0;
        font-size: 18px;
        width: 100%;
    }

    /* ######################## SECTION ######################## */
    .step-card{
        display: block;
        width: 100%;
        text-align: center;
        margin: 25px 0;
    }

    .step-icon{
        width: 100px;
    }

    .step-info {
        padding: 0;
    }

    .step-title{
        font-family: 'Viga', sans-serif;
        font-size: 25px;
    }

    /* ######################## SECTION ######################## */
    .reason-card{
        padding: 25px;
        width: 100%;
        margin-bottom: 35px;
        display: block;
        border: 3px solid #ddd;
        background: white;
        text-align: center;
    }

    .reason-info, .reason-image{
        display: block;
        vertical-align: middle;
    }

    .reason-info{
        width: 100%;
        padding-right: 0;
    }

    .reason-info-right{
        padding-left: 0;
        padding-right: 0;
    }

    .reason-image{
        width: 200px;
        margin: 0 auto;
        display: block;
    }

    .reason-title, .order-reason-title{
        font-size: 25px;
    }

    .line-text{
        font-size: 22px;
    }

    .reason-button{
        font-size: 20px;
    }


    /* ######################## FAQ ######################## */
    .faq-container, .support-container{
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

    .support-container{
        margin-left: 0;
        padding: 25px;
    }

    /* ######################## FOOTER ######################## */

    .statistics-card{
        width: 24%;
    }


    .statistics-icon{
        width: 50px;
    }

    .statistics-number{
        font-size: 20px;
        margin: 10px 0;
        text-align: center;
    }

    .footer{
        padding: 25px 2% 0 2%;
    }

    .footer-left, .footer-right{
        display: block;
        vertical-align: top;
        width: 100%;
    }

    .footer-left{
        padding-right: 0;
        text-align: justify;
        line-height: 1.5em;
        margin: 10px 0;
    }

    .footer-right{
        text-align: right;
    }

    .links-container{
        margin-left: 0;
        margin-top: 15px;
        width: 45%;
    }

    .links-container-title{
        display: block;
        font-family: 'Viga', sans-serif;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-link{
        display: block;
        text-decoration: none;
        color: white;
        margin-bottom: 3px;
    }

    .footer-bottom{
        width: 100%;
        display: block;
        text-align: center;
        padding: 15px 0 25px 0;
        border-top: 2px solid white;
        margin-top: 50px;
    }

    /* ###################################### NEW PAGE ######################################  */
    .header-text-order{
        padding: 0 0 25px 0;
    }

    .order-service-card{
        margin: 15px 10px;
        width: 40%;
    }

    .order-service-card:hover{
        background: #d7d7d7;
    }

    .platform-service-icon{
        width: 65px;
        display: block;
        margin: 15px auto;
    }

    .order-reason-icon, .order-reason-info{
        display: inline-block;
        vertical-align: middle;
    }

    .order-reason-icon{
        width: 100px;
        height: 100px;
    }

    .order-reason-info{
        width: 100%;
        margin-left: 0;
        margin-top: 25px;
    }
}

/* ###################################### MEDIA QUERY TABLET ######################################  */
@media screen and (min-width: 600px) and (max-width: 1100px) {
    .section-title{
        font-size: 35px;
        margin-bottom: 20px;
    }

    .section{
        margin: 25px 0;
        padding: 25px 5%;
        text-align: center;
    }

    /* ######################## HEADER ######################## */
    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background: #2a00cc;
        opacity: 0;
        transition: all 0.2s ease;
    }
    .nav-container ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }
    .nav-container ul li {
        display: block;
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-container ul li:not(:first-child) {
        margin-left: 0;
    }
    .nav-platform-name{
        padding: 25px 0;
        width: 100%;
        opacity: 0;
        color: white;
        font-size: 24px;
        font-weight: 600;
        transform: none;
        transition: all 0.2s ease;
    }
    .nav-open {
        position: fixed;
        right: 10px;
        top: 10px;
        display: block;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 9999;
        border-radius: 50%;
    }
    .nav-open i {
        display: block;
        width: 20px;
        height: 2px;
        background: #83c237;
        border-radius: 2px;
        margin-left: 14px;
    }
    .nav-open i:nth-child(1) {
        margin-top: 16px;
    }
    .nav-open i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }
    .nav-open i:nth-child(3) {
        margin-top: 4px;
    }

    .nav-platform-logo{
        width: 35px;
    }

    .header{
        padding: 15px 5%;
    }

    .header-text, .header-image{
        display: block;
        margin-top: 0;
    }

    .header-text{
        width: 100%;
        text-align: center;
    }

    .header-text-big{
        font-size: 35px;
    }

    .header-text-small{
        font-size: 18px;
    }

    .header-button{
        margin: 0 auto;
        font-size: 20px;
    }

    .header-button:hover{
        background: #83c237;
    }

    .header-image{
        width: 75%;
        padding-left: 0;
        margin: 25px auto;
    }

    /* ######################## SECTION ######################## */
    .platform-card{
        margin: 15px 10px;
        width: 30%;
    }

    .platform-card:not(:first-child) {
        margin-left: 10px;
    }

    .platform-icon{
        width: 90px;
        margin: 15px auto;
        display: block;
    }

    .platform-price{
        font-size: 18px;
    }

    /* ######################## SECTION ######################## */
    .image-right, .text-left{
        display: block;
    }

    .image-right{
        width: 75%;
        margin: 0 auto;
    }

    .text-left{
        padding-left: 0;
        font-size: 18px;
        width: 100%;
    }

    /* ######################## SECTION ######################## */
    .step-card{
        display: inline-block;
        vertical-align: top;
        width: 49%;
        text-align: center;
        margin: 25px 0;
    }

    .step-icon{
        width: 100px;
    }

    .step-info {
        padding: 0 10px;
    }

    .step-title{
        font-family: 'Viga', sans-serif;
        font-size: 25px;
    }

    /* ######################## SECTION ######################## */
    .reason-card{
        padding: 25px;
        width: 100%;
        margin-bottom: 35px;
        display: block;
        border: 3px solid #ddd;
        background: white;
        text-align: center;
    }

    .reason-info, .reason-image{
        display: inline-block;
        vertical-align: middle;
    }

    .reason-info{
        width: 65%;
        padding-right: 0;
    }

    .reason-info-right{
        padding-left: 0;
        padding-right: 0;
    }

    .reason-image{
        width: 200px;
        margin: 0 auto;
    }

    .reason-title, .order-reason-title{
        font-size: 25px;
    }

    .line-text{
        font-size: 22px;
    }

    .reason-button{
        font-size: 20px;
    }

    /* ######################## FAQ ######################## */
    .faq-container, .support-container{
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

    .support-container{
        margin-left: 0;
        padding: 25px;
    }

    /* ######################## FOOTER ######################## */

    .statistics-card{
        width: 24%;
    }

    .statistics-icon{
        width: 75px;
    }

    .statistics-number{
        font-size: 20px;
        margin: 10px 0;
        text-align: center;
    }

    .footer{
        padding: 25px 2% 0 2%;
    }

    .footer-left, .footer-right{
        display: block;
        vertical-align: top;
        width: 100%;
    }

    .footer-left{
        padding-right: 0;
        text-align: justify;
        line-height: 1.5em;
        margin: 10px 0;
    }

    .footer-right{
        text-align: right;
    }

    .links-container{
        margin-left: 0;
        margin-top: 15px;
        width: 45%;
    }

    .links-container-title{
        display: block;
        font-family: 'Viga', sans-serif;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-link{
        display: block;
        text-decoration: none;
        color: white;
        margin-bottom: 3px;
    }

    .footer-bottom{
        width: 100%;
        display: block;
        text-align: center;
        padding: 15px 0 25px 0;
        border-top: 2px solid white;
        margin-top: 50px;
    }

    /* ###################################### NEW PAGE ######################################  */
    .header-text-order{
        padding: 0 0 25px 0;
    }

    .order-service-card{
        margin: 15px 10px;
        width: 40%;
    }

    .order-service-card:hover{
        background: #d7d7d7;
    }

    .platform-service-icon{
        width: 65px;
        display: block;
        margin: 15px auto;
    }

    .order-reason-icon, .order-reason-info{
        display: inline-block;
        vertical-align: middle;
    }

    .order-reason-icon{
        width: 100px;
        height: 100px;
    }

    .order-reason-info{
        width: 100%;
        margin-left: 0;
        margin-top: 25px;
    }
}

/* ###################################### MEDIA QUERY TABLET ######################################  */
@media screen and (min-width: 1100px) and (max-width: 1700px) {
    /* ######################## HEADER ######################## */
    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
        background: #2a00cc;
        opacity: 0;
        transition: all 0.2s ease;
    }
    .nav-container ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }
    .nav-container ul li {
        display: block;
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-container ul li:not(:first-child) {
        margin-left: 0;
    }
    .nav-platform-name{
        padding: 25px 0;
        width: 100%;
        opacity: 0;
        color: white;
        font-size: 24px;
        font-weight: 600;
        transform: none;
        transition: all 0.2s ease;
    }
    .nav-open {
        position: fixed;
        right: 10px;
        top: 10px;
        display: block;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 9999;
        border-radius: 50%;
    }
    .nav-open i {
        display: block;
        width: 20px;
        height: 2px;
        background: #83c237;
        border-radius: 2px;
        margin-left: 14px;
    }
    .nav-open i:nth-child(1) {
        margin-top: 16px;
    }
    .nav-open i:nth-child(2) {
        margin-top: 4px;
        opacity: 1;
    }
    .nav-open i:nth-child(3) {
        margin-top: 4px;
    }

    .nav-platform-logo{
        width: 35px;
    }

    /* ######################## SECTION ######################## */
    .platform-card{
        margin: 15px 10px;
        width: 20%;
    }

    .platform-card:not(:first-child) {
        margin-left: 10px;
    }

    .platform-icon{
        width: 90px;
        margin: 15px auto;
        display: block;
    }

    .platform-price{
        font-size: 18px;
    }

}
