/** Linking local font **/
@font-face {
    font-family: "open-sans-regular";
    src: url("../../common/fonts/open-sans/OpenSans-Regular.5737a677bc9f.ttf");
}

@font-face {
    font-family: "samantha";
    src: url("../../common/fonts/samantha/Samantha.e513ff1a6719.otf");
}

@font-face {
    font-family: "poppins";
    src: url("../../common/fonts/poppins/Poppins-Regular.093ee89be9ed.ttf");
}

@font-face {
    font-family: "poppins-bold";
    src: url("../../common/fonts/poppins/Poppins-Bold.08c20a487911.ttf");
}

@font-face {
    font-family: "Montserrat";
    src: url("../../common/fonts/Montserrat/static/Montserrat-Regular.38712903602f.ttf");
}

ul li, ol li{
    list-style: none;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

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;
    vertical-align: baseline;
    font-family: "poppins";
}

html, body{
    scroll-behavior: smooth;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

/** Root container **/
#root{
    width: 100%;
    height: fit-content;
    padding-top: 70px;
}

/** Inner container class **/
.in-container{
    width: 100%;
    height: fit-content;
    max-width: 1100px;
    margin: 0 auto;
}

.colored{
    color: #F89823 !important;
}

.signature-font{
    font-family: 'samantha' !important;
}


/** Blog **/
.blog-container{
    width: 100%;
    height: fit-content;
    display: flex;
    display: -webkit-flexbox;
    flex-wrap: wrap;
    margin-top: 40px;
}

.blog-container .blog-item{
    width: 33%;
    height: fit-content;
    min-height: 300px;
    float: left;
    color: #000000;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.blog-container .blog-item .blog-item-inner{
    width: 90%;
    height: 100%;
    margin-right: auto;
}

.blog-container .blog-item .blog-item-inner .blog-thumbnail{
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-container .blog-item .blog-item-inner .blog-title{
    font-size: 20px;
    margin-top: 15px;
    font-weight: bold;
}

.blog-container .blog-item .blog-item-inner .blog-body{
    font-size: 12px;
    margin-top: 10px;
    color: #7a7a7a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog-container .blog-item .blog-item-inner .blog-footer{
    width: 100%;
    height: fit-content;
    display: flex;
    display: -webkit-flexbox;
    font-size: 12px;
    margin-top: 15px;
}

.blog-container .blog-item .blog-item-inner .blog-footer .blog-btn-read-more{
    width: fit-content;
    height: fit-content;
    color: #F89823;
    border: 2px solid #F89823;
    border-radius: 100px;
    text-align: center;
    padding: 10px 40px;
    cursor: pointer;
}

.blog-container .blog-item .blog-item-inner .blog-footer .blog-date{
    color: #F89823;
    height: fit-content;
    display: block;
    margin: auto;
    max-width: 70px;
    text-align: center;
    font-size: 13px;
}

.blog-container .blog-item .blog-item-inner .blog-categories{
    width: 100%;
    height: fit-content;
    font-size: 12px;
    display: flex;
    display: -webkit-flexbox;
}

.blog-container .blog-item .blog-item-inner .blog-category{
    width: fit-content;
    height: fit-content;
    display: block;
    margin-right: 5px;
    color: #a1a1a1;
}


/** Country code **/
form .form-select-code{
    max-height: 45px;
    margin-top: 10px;
    border: 1px solid #62D7E7;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
}

form .form-select-code .form-select-code-inner{
    width: 100%;
    height: fit-content;
    display: flex;
    display: -webkit-flexbox;
    margin-top: 10px;
    padding: 0 10px;
    box-sizing: border-box;
    color: #464646;
    position: relative;
}

form .form-select-code .form-select-code-inner i{
    display: block;
    margin-left: auto;
    margin-top: 5px;
    color: #c3c3c3;
}

form .form-select-code .form-select-code-inner .country-codes-container{
    width: 350px;
    height: 250px;
    position: absolute;
    background: #FFFFFF;
    border-radius: 5px;
    top: -255px;
    left: -1px;
    box-sizing: border-box;
    border: 1px solid #bdbdbd;
    border-bottom: none;
    box-shadow: 0px -2px 13px -6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: none;
}

form .form-select-code .form-select-code-inner .country-codes-search-container{
    width: 100%;
    height: 25%;
    padding: 5px;
    box-sizing: border-box;
}

form .form-select-code .form-select-code-inner .country-codes-container input{
    width: 100%;
    height: 100%;
    margin: 0;
    border: 1px solid #bdbdbd;
}

form .form-select-code .form-select-code-inner .country-codes-container .country-codes-list{
    width: 100%;
    height: 75%;
    overflow-y: scroll;
    overflow-x: hidden;
}

form .form-select-code .form-select-code-inner .country-codes-container .country-codes-list li{
    width: 100%;
    height: fit-content;
    min-height: 30px;
    padding: 0 10px;
    padding-top: 5px;
    font-size: 13px;
    box-sizing: border-box;
}

form .form-select-code .form-select-code-inner .country-codes-container .country-codes-list li:hover{
    background: #eaeaea;
    box-sizing: border-box;
    cursor: pointer;
}

form .form-select-code .form-select-code-inner .country-codes-container .country-codes-list li span{
    display: flex;
    display: -webkit-flexbox;
}

form .form-select-code .form-select-code-inner .country-codes-container .country-codes-list li img{
    width: 25px;
    height: 20px;
    margin-right: 10px;
    box-shadow: 0px 0px 13px -4px;
}

form .form-select-code .form-select-code-inner .form-select-code-icon{
    width: 25px;
    max-height: 25px;
}

form .form-select-code .form-select-code-inner .form-select-code-text{
    margin-left: 10px;
    margin-top: 5px;
}



/* Section features */
#features-section{
    width: 100%;
    height: fit-content;
    display: flex;
    display: -webkit-flexbox;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 50px;
    margin-bottom: 70px;
}

#features-section .feature{
    width: 100%;
    max-width: 1400px;
    height: fit-content;
    display: flex;
    display: -webkit-flexbox;
    flex-direction: row;
}

#features-section .feature .feature-img-container{
    width: fit-content;
    max-width: 45%;
    height: 100%;
    display: flex;
    display: -webkit-flexbox;
}

#features-section .feature .feature-img-container img{
    width: 100%;
    height: auto;
}

#features-section .feature .feature-content{
    width: 45%;
    height: fit-content;
    margin: auto;
    display: flex;
    display: -webkit-flexbox;
    flex-direction: column;
}

#features-section .feature .feature-content .feature-label{
    font-family: 'poppins';
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    height: fit-content;
    background: #FFE7DE;
    color: #F27F55;
    border-radius: 5px;
    padding: 5px 10px;
}

#features-section .feature .feature-content .feature-title{
    font-family: 'poppins';
    font-size: 24px;
    font-weight: 600;
    width: fit-content;
    height: fit-content;
    margin: 10px 0;
}

#features-section .feature .feature-content .feature-description{
    font-family: 'poppins';
    font-size: 18px;
    width: fit-content;
    height: fit-content;
    color: #889596;
}

#features-section .feature-reversed{
    flex-direction: row-reverse;
}


/* Download section */
#download-section{
    width: 100%;
    height: 400px;
    display: flex;
    display: -webkit-flexbox;
    position: relative;
    padding: 30px 0;
}

#download-section #download-section-pin-img{
    width: auto;
    height: 200px;
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}

#download-section #download-section-left{
    width: 40%;
    height: fit-content;
    display: flex;
    display: -webkit-flexbox;
    flex-wrap: wrap;
    flex-direction: column;
}

#download-section .download-section-content{
    width: fit-content;
    height: fit-content;
    flex-direction: column;
    display: none;
}

#download-section .download-section-content-visible{
    display: flex !important;
    display: -webkit-flexbox;
}

#download-section #download-section-btn-download{
    width: 250px;
    height: auto;
    display: flex;
    display: -webkit-flexbox;
    margin-top: 40px;
}

#download-section #download-section-btn-download img{
    width: 100%;
    height: auto;
}

#download-section #download-section-left .download-section-title{
    width: fit-content;
    height: fit-content;
    font-family: 'poppins-bold';
    font-size: 30px;
    color: #132D2F;
}

#download-section #download-section-left .download-section-hint{
    font-size: 16px;
    color: #889596;
    margin-top: 5px;
}

#download-section #download-section-left #download-section-hint{
    width: fit-content;
    height: fit-content;
    font-size: 14px;
    color: #889596;
    margin-top: 10px;
}

#download-section #download-section-left #download-section-qr-code{
    width: 200px;
    height: 200px;
    display: flex;
    display: -webkit-flexbox;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 13px -4px #000;
    margin-top: 20px;
}

#download-section #download-section-left #download-section-qr-code img{
    width: 100%;
    height: 100%;
}

#download-section #download-section-right{
    width: 60%;
    height: 100%;
    display: flex;
    display: -webkit-flexbox;
    flex-wrap: wrap;
}

#download-section #download-section-right img{
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-top: -140px;
}



/* contact section */
#contact-section{
    width: 100%;
    height: fit-content;
    display: flex;
    display: -webkit-flexbox;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 50px 0;
    z-index: 5;
    position: relative;
}

#contact-section #contact-section-left{
    width: 35%;
    height: fit-content;
    margin: auto 0;
}

#contact-section #contact-section-left .contact-title{
    font-size: 30px;
    font-family: 'poppins-bold';
    line-height: 35px;
    color: #0A181A;
    font-weight: bolder;
}

#contact-section #contact-section-left .contact-description{
    font-size: 14px;
    margin-top: 10px;
    color: #889596;
    font-family: 'poppins';
}

#contact-section #contact-section-right{
    width: 60%;
    height: fit-content;
    margin-left: auto;
    display: flex;
    display: -webkit-flexbox;
    flex-wrap: wrap;
    flex-direction: row;
}

#contact-section form{
    width: 100%;
    height: fit-content;
    display: flex;
    display: -webkit-flexbox;
    flex-wrap: wrap;
    flex-direction: column;
}

#contact-section form label{
    font-size: 14px;
    color: #132D2F;
    font-family: 'open-sans-regular';
}

#contact-section form input[type='name'],
#contact-section form input[type='email'],
#contact-section form textarea{
    width: 100%;
    height: 40px;
    border: 1px solid #8ECBDB;
    border-radius: 5px;
    background: #42a8c314;
    font-size: 13px;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 5px 0 15px 0px;
    outline: none;
}

#contact-section form textarea{
    max-width: 100%;
    min-width: 100%;
    max-height: 150px;
    min-height: 150px;
    font-family: 'open-sans-regular';
    padding: 10px;
}

#contact-section input[type='submit']{
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
    background: #FD8559;
    border: 1px solid #FD8559;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-family: 'open-sans-regular';
    padding: 5px 35px;
    cursor: pointer;
    transition: all ease 0.3s;
}

#contact-section input[type='submit']:hover{
    background-color: #00000000;
    color: #FD8559;
}

#contact-section .feature-label{
    width: fit-content;
    height: fit-content;
    background: #FFE7DE;
    color: #F27F55;
    font-size: 12px;
    border-radius: 5px;
    padding: 3px 5px;
    margin-bottom: 10px;
}





/* Cookies popup */
#cookies-popup{
    width: fit-content;
    height: fit-content;
    position: fixed;
    bottom: 20px;
    right: -2000px;
    background-color: #D9EEF3;
    border-radius: 24px;
    border: 1px solid #E5F9FC;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    max-width: 400px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 13px -4px #979797;
    transition: ease 0.3s all;
    z-index: 9;
}

#cookies-popup .popup-content{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

#cookies-popup .popup-content p{
    margin-top: 20px;
}

#cookies-popup #cookies-popup-btns{
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

#cookies-popup #cookies-popup-btns button{
    width: fit-content;
    height: fit-content;
    min-width: 100px;
    margin: 0 5px;
    padding: 8px;
    border-radius: 100px;
    border: 1px solid;
    transition: all ease 0.3s;
    cursor: pointer;
}

#cookies-popup #cookies-popup-btns #btn-accept-cookies{
    background-color: #0A181A;
    color: #FFFFFF;
}

#cookies-popup #cookies-popup-btns #btn-accept-cookies:hover{
    background-color: transparent;
    color: #0A181A;
}

#cookies-popup #cookies-popup-btns #btn-decline-cookies{
    background-color: transparent;
    color: #0A181A;
    border-color: #0A181A;
}






/** MEDIA QUERIES **/
@media only screen and (max-width: 1120px){
    .in-container{
        max-width: 96%;
    }
}


@media only screen and (max-width: 900px){
    header #header-content #header-content-right #header-img{
        height: auto;
    }

    #download-section{
        flex-direction: column;
        height: fit-content;
    }

    #download-section #download-section-left{
        width: 100%;
    }

    #download-section #download-section-right{
        width: 100%;
    }

    #download-section #download-section-right img{
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    #download-section #download-section-left .download-section-hint{
        margin-top: 0px;
    }

    #download-section #download-section-btn-download{
        margin-top: 20px;
    }

    #features-section .feature .feature-content .feature-description{
        font-size: 14px;
    }
}


/* IPAD */
@media only screen and (max-width: 880px){
    #dialog-partnership .dialog .dialog-inner .dialog-left .dialog-left-content .dialog-flex-container{
        flex-direction: column;
    }

    #dialog-partnership .dialog .dialog-btn-filled{
        margin-bottom: 10px;
    }

    #dialog-partnership .dialog .dialog-btn-border{
        padding: 8px 15px;
    }

    #dialog-partnership .dialog .dialog-inner .dialog-left .dialog-left-content h2 {
        font-size: 30px;
    }

    #dialog-partnership .dialog .dialog-inner .dialog-left .dialog-left-content h3 {
        font-size: 16px;
    }

    #dialog-partnership .dialog .dialog-inner .dialog-left .dialog-left-content p {
        font-size: 12px;
    }
}



@media only screen and (max-width: 800px){
    .in-container{
        padding: 0px 25px;
        box-sizing: border-box;
    }

    .blog-container .blog-item{
        min-width: 300px;
        margin: 0 auto;
    }

    .blog-container .blog-item .blog-item-inner .blog-title{
        font-size: 15px;
    }

    .blog-container .blog-item .blog-item-inner .blog-body{
        font-size: 10px;
    }

    .blog-container .blog-item .blog-item-inner .blog-footer{
        font-size: 10px;
    }

    .blog-container .blog-item .blog-item-inner .blog-footer .blog-btn-read-more{
        padding: 5px 15px;
    }
}


@media only screen and (max-width: 700px){
    #features-section{
        margin-bottom: 30px;
    }

    #features-section .feature{
        flex-direction: column;
    }

    #features-section .feature .feature-img-container{
        width: fit-content;
        min-width: fit-content;
        max-width: fit-content;
        margin: auto;
        overflow-x: hidden;
        margin-bottom: 20px;
    }

    #features-section .feature .feature-img-container img{
        width: 300px;
        height: auto;
        margin: auto;
    }

    #features-section .feature .feature-content{
        width: 100%;
        margin-bottom: 50px;
    }

    #contact-section{
        flex-direction: column;
    }

    #contact-section #contact-section-left{
        width: 100%;
    }

    #contact-section #contact-section-right{
        width: 100%;
        margin-top: 40px;
    }
}


@media only screen and (max-width: 600px){
    #download-section #download-section-btn-download{
        width: 135px;
    }

    #download-section #download-section-left .download-section-title{
        font-size: 22px;
    }

    #features-section .feature .feature-content .feature-label{
        font-size: 12px;
    }

    #features-section .feature .feature-content .feature-title{
        font-family: 'poppins-bold';
        font-size: 28px;
        font-weight: 800;
        line-height: 40px;
    }

    #features-section .feature .feature-content .feature-description{
        font-size: 16px;
        line-height: 24px;
    }

    #contact-section #contact-section-left h3{
        font-size: 20px;
        line-height: 25px;
    }

    #contact-section #contact-section-left p{
        font-size: 13px;
    }

    #contact-section #contact-section-right{
        margin-top: 20px;
    }

    #cookies-popup{
        width: 90%;
    }
}


@media only screen and (max-width: 400px){
    .in-container{
        padding: 0px 5px
    }
}


@media only screen and (max-width: 370px){
    .blog-container .blog-item{
        min-width: 100%;
    }
    
    .blog-container .blog-item .blog-item-inner{
        width: 100%;
    }

    .blog-container .blog-item .blog-item-inner .blog-thumbnail{
        height: 150px;
    }
}