﻿
.white-bg {
    background-color: #fff;
    color: #333;
}

.whitesmoke-bg {
    background-color: whitesmoke;
    color: #333;
}

.gray-bg {
    background-color: #333;
    color: #fff;
}

.blue-bg {
    background-color: #0066cc;
    color: #fff;
}

.mobile-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    padding-top: 80px;
    border: none;
    overflow: hidden;
}

.mobile-section-title {
  font-family: var(--std-font);
  font-size: 3.5vh;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-align: left;
}

.mobile-button {
    background: var(--std-button-color);
    color: var(--std-button-text-color);
    display: inline-block;
    width: 100%;
    min-width: 200px;
    max-width: 320px;
    margin: 5px 0;
    padding: 10px 0;
    font-family: var(--std-font);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    transition: background .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.mobile-button:hover {
    background: var(--button-hover);
    color: var(--button-hover-text);
}

.mobile-button-white {
    background: #fff;
    border: 1px solid #00aade;
    color: #00aade;
}


.mobile-button-yellow {
    background: #face26;
    color: #333;
    border: none;
}

    .mobile-button-yellow:hover {
        background: rgba(0,0,0,0.9);
        color: #ffffff;
    }

.mobile-bgvid {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    width: max(100vw, 100vh * 0.5625);
    height: max(100vh, 100vw * 1.77777);
    overflow: hidden;
    z-index: 0;
}

.potraitVideo, .landscapeVideo {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
}

.mobileTutorial {
    margin: 20px 40px;
    width: calc(100vw - 80px);
    height: calc((100vw - 80px) * 0.5625);
    border-radius: 6px;
}

.claim {
    display: block;
    font-weight: 600;
    font-size: 3.5vh;
    text-align: left;
    width: auto;
    padding-left: 0px;
    line-height: normal;
}

.subSection-claim {
    width: calc(100% - 80px);
    height: 50%;
    padding: 20px 40px 0px 40px;
    font-family: var(--std-font);
    font-size: 4vh;
    text-align: justify;
}

.subSection-detail {
    width: calc(100% - 80px);
    height: auto;
    padding: 0 40px;
    font-family: var(--std-font);
    font-size: 2.8vh;
    line-height: 3.5vh;
    text-align: left;
}


.row-container-centered {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; 
    align-items: center;
    align-content: center;
    justify-content: center!important;
    text-align: center !important;
    width: 100%;
    height: auto;
    text-align: left;
}

.more-mobile {
    display: inline-block;
    margin: 0;
    animation-duration: 2s;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: auto;
    padding: 0px;
    bottom: 15px;
    background: transparent;
    font-size: 1.7vh;
    font-weight: 400;
    text-align: center;
    color: #fff;
    z-index: 2;
    cursor: pointer;
    outline: none;
}

.iconClaimdiv {
    margin-top: -100px;
}

.iconClaim {
    width: 150px;
    margin-bottom: 30px;
}

@media all and (orientation:portrait) {
    .potraitVideo {
        display: block;
        width: max(100vw, 100vh * 0.5625);
        height: max(100vh, 100vw * 1.77777);
    }
    .landscapeVideo {
        display: none;
    }
}


@media all and (orientation:landscape) {
    .potraitVideo {
        display: none;
    }
    .landscapeVideo {
        display: block;
        /*width: max(100vw, 100vh * 1.777777);
        height: max(100vh, 100vw * 0.5625);*/
        width: 100vw;
        height: calc(100vw * 0.5625);
    }
    .claim {
        font-weight: 600;
        font-size: 2.8vw;
        text-align: left;
        /*width: 100%;*/
        padding-left: 0px;
        margin-bottom: 40px;
        line-height: normal;
    }

    .iconClaimdiv {
        margin-top: -5%;
    }

    .iconClaim {
        width: 100px;
        margin-bottom: 20px;
    }
    .mobile-button {
        width: 200px;
        max-width: calc(50vw - 40px);
    }

    .mobile-section {
        position: relative;
        width: 100%;
        height: auto;
        min-height: calc((100vw * 0.5625) - 80px);
        padding-top: 80px;
        padding-bottom: 0px;
        border: none;
        overflow: hidden;
    }
    
    .mobile-section-title {
        font-family: var(--std-font);
        font-size: 3.5vw;
        font-weight: 600;
        margin: 0 0 10px 0;
        text-align: left;
    }

    .subSection-claim {
        width: calc(100% - 80px);
        height: 50%;
        padding: 20px 40px 0px 40px;
        font-family: var(--std-font);
        font-size: 4vw;
        text-align: justify;
    }

    .subSection-detail {
        width: calc(100% - 80px);
        height: auto;
        padding: 0 40px;
        font-family: var(--std-font);
        font-size: 2.8vw;
        line-height: 3.5vw;
        text-align: left;
    }

   
    .more-mobile {
        position: relative;
        padding: 60px 0 0 0;
        font-size: 2vw;
        font-weight: 400;
    }

}


.myDivs {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100vw;
    height: 100vh;
    justify-content: center !important;
    align-items: center !important;
    align-content: center;
    animation-duration: 1s;
}

