@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
    --site-ff: 'Noto Sans TC';      /* Noto Sans Traditional Chinese */
    --site-font-size: 16pt;          /* font size */
    --site-title-font-size: 24pt;  /* font size for titles */
    --site-text-color: #ffffff;  /*  white */
    --site-bk-color: #2f99a5; 
    --site-bk-color2: #f5b85f;
    --pagetitle-text-color: #3c3c3c;
    --dialogbox-text-color: #3c3c3c;
    --aboutus-title-font-size: 18pt;
    --aboutus-img-width: 30%;
}

html {
	margin: 0;
	padding: 0;
    font-family: var(--site-ff);
    font-size: var(--site-font-size);
    color: var(--site-text-color);
}

body { 
    margin: 0; 
    padding: 0;
    background-color: var(--site-bk-color);
    display:flex;
    flex-direction: column;
}

.landing, .system_introduction, .paid_plans, .how_to_join {
    width: 100%;
    max-width: 100%;

    background-repeat: no-repeat;
    background-size: cover;  /* make background image resizable */

    display:flex;
    flex-direction: column;
}

/* only use to decide the heigh of DIV */
/* background image is in DIV's "background0-image" */
.bk_image_placeholder {
    width: 100%;
    max-width: 100%;
    visibility: hidden;
}

.page_title {
    font-weight: bold;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 100%;
    color: var(--site-text-color);
    padding: 2% 0 0 0;
}

.landing {
    background-image: url("../imgs/landing/background_top.png");
}

.landing .menu_area input[type=checkbox] {
    display: none;
}

.landing .hamburger_menu {
    display: none;
    user-select: none;
}

.landing .menu {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
    position: absolute;
    right: 18%;
}

.landing ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
/*  no underline for a tag */
a {
    text-decoration: none;
}


a:hover {
    font-weight:bolder;
    /*background-color: var(--site-bk-color2)!important;*/
    cursor: pointer;
}

a:visited, a:link {
    color: var(--site-text-color);
}

a.dark {
    color: #000000;
    text-decoration:underline;
}

a.button {
    background-color: var(--site-bk-color2)!important;
    border-radius: 5px;
    padding: 0 5px;
}

.landing .o4_slogan {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    position: absolute;
    width: 50%;
    height: 10%;
}

.landing .o4_slogan .logo {
    height: auto;
}

.landing .o4_slogan .slogan_area {
    display: inline-flex;
    flex-direction: column;
    padding-left: 1%;
}

.close {
    float: right;
}

.inquire_layout_2 {
    display: none;
    width: 100%;
    height: 500px;
}

#Inquire2 {
    display: none;
}

.inquire_container .inquire_title {
    text-align: center;
    color: #000000;
    font-size: 20px;
}

/* Style inputs with type="text", type="email", and textareas */
.inquire_container input[type=text], input[type=email], textarea {
    width: 100%; /* Full width */
    border: 1px solid #858585; /* Gray border */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
.inquire_container input[type=submit] {
    background-color: var(--site-bk-color2);
    color: white;
    width: 100%;
    border: none;
    cursor: pointer;
}

.inquire_container input[type=checkbox] {
    accent-color: #858585;
}

/* When moving the mouse over the submit button, add a darker green color */
.inquire_container input[type=submit]:hover {
    /*background-color: var(--site-bk-color);*/
    cursor: pointer;
}

::placeholder {
    color: #ccc;
    opacity: 0.5;
}

.inquire_container {
    display: inline-flex;
    width: 24%;
    background-color: rgb(255, 255, 255, 0.6);
    color: var(--pagetitle-text-color);
    position: absolute;
}

.fa-question-circle-o {
    background-color:  #d9d9d9; 
    color: #3c3c3c; 
}

.fa-question-circle-o:hover {
    cursor: pointer;
} 

.inquire_container form {
    width: 100%;
}

.inquire_container table {
    width: 100%;
    table-layout: fixed;
}

.inquire_container td {
    vertical-align:middle;
    align-items: center;
}

.inquire_container textarea {
    height: 150px;
}

.inquire_container .checkbox_group {
    text-align: center;
    vertical-align: middle;
}

input[type="checkbox"] {
    vertical-align: middle;
}

.right_align {
    text-align: right;
    vertical-align: middle;
}

.inquire_container p {
    color: var(--pagetitle-text-color);
}

.system_introduction {
    background-image: url("../imgs/landing/Background_系統介紹.png");
}

.system_introduction .page_title {
    color: #3c3c3c;;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.system_introduction .topic_area {
    display: inline-flex;
    flex-direction: column;

    position: absolute;
    width: 100%;

    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.art {
    height: auto;
    max-width: 100%;
}

.topic_title {
    color: #ffffff;
}

.article {
    color: #efefef;
}

.topic1, .topic2, .topic3 {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    
    background: var(--site-bk-color);
    background: -moz-linear-gradient(90deg, var(--site-bk-color) 0%, var(--site-bk-color2) 100%);
    background: -webkit-linear-gradient(90deg, var(--site-bk-color) 0%, var(--site-bk-color2) 100%);
    background: linear-gradient(90deg, var(--site-bk-color) 0%, var(--site-bk-color2) 100%);
}

.topic1, .topic3{
    flex-direction: row-reverse;
}

.paid_plans {
    background-image: url("../imgs/landing/Background_方案介紹.png");
}

.paid_plans .page_title {
    color: #3c3c3c;;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.paid_plans .plan_area {
    display: inline-flex;
    justify-content:center;

    position: absolute;
    width: 100%;
    height: 50%;

    color: #3c3c3c;
}

#plan_area_2 {
    display: none;
}

.paid_plans .plan_area .plan {
    text-align: center;

    background-color: rgba(255, 255, 255, 1); /* #ffffff */
    border-radius: 50px;

    display: inline-flex;
    flex-direction: column;
    justify-content: space-between; 
    box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.25);
    margin: 0 1%;
}
.paid_plans .block_header {
    /*text-shadow: 1px 1px #7c7c7c;*/
    padding-top: 10%;
}

.paid_plans .bold {
    color: var(--site-bk-color);
    font-weight: bold;
}

s {
    color: #ccc;
    text-decoration: line-through;
}

.paid_plans hr {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(0,0,0,1) 50%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(0,0,0,1) 50%, rgba(255,255,255,1) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(0,0,0,1) 50%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);

    width: 1px;
    height: 50%;

    padding: 0;
    margin: 0;

    border: #ffffff;
    visibility: hidden;
}

.how_to_join {
    background-image: url("../imgs/landing/Background_如何加入.png");
}

.how_to_join .process_area {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    position: absolute;
    width: 100%;
    padding: 8% 0 0 0;
    margin: auto;
}

.how_to_join .process_area .step {
    text-align: center;
    background-color: rgba(52, 81, 68, 0.7); /* #345144 */
    border-radius: 13px;

    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.how_to_join .process_area .step .step_image {
    max-width:90%;
    width: auto;
}

/* Desktop - above 1408px */
@media screen and (min-width: 1408px) {
    html {
        font-size: 16pt;
    }

    .page_title {
        font-size: 32px;
    }

    .landing .menu {
        top: 5%;
        width: 25%;
        font-size: 15px;
    }
    
    .landing .menu a {
        padding: 5px;
    }
    
    .landing .o4_slogan {
        margin: 26% 0 0 21%;
    }
    
    .landing .o4_slogan .logo {
        width: 12%;
    }
    
    .landing .o4_slogan .slogan_area {
        font-size: 18px;
    }
    
    .landing .title {
        font-size: 46px;
    }
    
    .inquire_container input[type=text], input[type=email], textarea {
        padding: 10px; /* Some padding */ 
        border-radius: 10px; /* Rounded borders */
        margin-top: 2px; /* Add a top margin */
        margin-bottom: 2px; /* Bottom margin */
    }
    
    .inquire_container input[type=submit] {
        padding: 10px 20px;
        margin-top: 2px;
        border-radius: 10px;
    }
    
    .inquire_container {
        border-radius: 10px;
        padding: 10px;
        margin: 13% 0 0 57%;
        font-size: 14px;
    }
    
    .inquire_container textarea {
        height: 150px;
    }
    
    .inquire_container .checkbox_group {
        font-size: 11px;
    }
    
    .system_introduction .topic_area {
        column-gap: 1%; 
        height: 85%;
        padding: 8% 0 0 0; 
        font-size: 20px;
    }
    
    .inquire_container p {
        font-size: var(--site-font-size);
        padding-left: 5%;
        padding-top: 0;
    }
    
    .art {
        width: var(--aboutus-img-width);
        padding: 2%;
    }
    
    .topic_title {
        padding-bottom: 1%;
        font-size: 24px;
     }
    
    .article {
        padding: 0 8% 0 8%;
        font-size: 18px;      
    }
     
    .topic1, .topic2, .topic3 {
        width: 40%;      
        border-radius: 9999px; /* a sufficiently huge value in pixels or any other absolute measurement unit does produce 'perfect 1/4 circle' corners */
    }
       
    .topic1 {
        margin-left: 20%;
    }
    
    .topic2 {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        padding-right: 30%;
        margin: 10px 0 10px 30%;
    }

    .topic2 .article {
        padding-left: 3%;
    }
    
    .topic3 {
        left: 0;
        padding-left: 25%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;   
    }
    
    .paid_plans .plan_area {
        column-gap: 30px;
        padding: 15% 0 0 0;
    }

    .paid_plans .block_header {
        margin-top: 8%;
        font-size: 26px;
    }
    
    .paid_plans .plan_area .plan {    
        width: 18%;
    }
    
    .paid_plans .bold {
        font-size: 24px;
        padding-bottom: 20%;
    }
    
    .how_to_join .process_area .step {
        width: 12%;
        height: 270px;
        font-size: 16pt;
    }

    .how_to_join .process_area .arrow {
        padding: 0 2% 0 2%;
    }   
}

/* Between 1408px to 1216px */
@media screen and (max-width: 1407px) and (min-width: 1216px) {
    html {
        font-size: 14pt;
    }

    .page_title {
        font-size: 26pt;
    }

    .landing .menu {
        top: 5%;
        width: 25%;
        font-size: 14px;
    }
    
    .landing .menu a {
        padding: 5px;
    }
    
    .landing .o4_slogan {
        margin: 24% 0 0 21%;
    }
    
    .landing .o4_slogan .logo {
        width: 12%;
    }
    
    .landing .o4_slogan .slogan_area {
        font-size: 16px;
    }
    
    .landing .title {
        font-size: 42px;
    }
    
    .inquire_container input[type=text], input[type=email], textarea {
        padding: 10px; /* Some padding */ 
        border-radius: 10px; /* Rounded borders */
        margin-top: 2px; /* Add a top margin */
        margin-bottom: 2px; /* Bottom margin */
    }
    
    .inquire_container input[type=submit] {
        padding: 10px 20px;
        margin-top: 2px;
        border-radius: 10px;
    }
    
    .inquire_container {
        width: 26%;
        border-radius: 10px;
        padding: 10px;
        margin: 12% 0 0 55%;
        font-size: 12px;
    }
    
    .inquire_container textarea {
        height: 140px;
    }
    
    .inquire_container .checkbox_group {
        font-size: 10px;
    }
    
    .inquire_container p {
        font-size: 14px;
    }

    .system_introduction .topic_area {
        column-gap: 15px; 
        height: 85%;
        padding: 8% 0 0 0; 
        font-size: 20px;
    }
    
    .art {
        width: var(--aboutus-img-width);
        padding: 2%;
    }
    
    .topic_title {
        padding-bottom: 1%;
        font-size: 22px;
     }
    
    .article {
        padding: 0 8% 0 8%;
        font-size: 16px;
    }
     
    .topic1, .topic2, .topic3 {
        width: 40%;      
        border-radius: 9999px; /* a sufficiently huge value in pixels or any other absolute measurement unit does produce 'perfect 1/4 circle' corners */
    }
       
    .topic1 {
        margin-left: 20%;
        padding-left: 2%;
    }
    
    .topic2 {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        padding-right: 30%;
        margin: 10px 0 10px 30%;
    }

    .topic2 .article {
        padding-left: 3%;
    }
    
    .topic3 {
        left: 0;
        padding-left: 25%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;   
    }

    .paid_plans .plan_area {
        column-gap: 30px;
        height: 45%;
        padding: 15% 0 0 0;
    }

    .paid_plans .block_header {
        margin-top: 8%;
        font-size: 24px;
    }
    
    .paid_plans .plan_area .plan {    
        width: 19%;
    }
    
    .paid_plans .bold {
        font-size: 24px;
        padding-bottom: 20%;
    }

    .how_to_join .process_area .step {
        width: 13%;
        height: 260px;
        font-size: 18px;
    }

    .how_to_join .process_area .step .step_image {
        object-fit: contain;
    }

    .how_to_join .process_area .arrow {
        padding: 0 1% 0 1%;
    }   
}

/* Between 1216px to 1024px */
@media screen and (max-width: 1215px) and (min-width: 1024px) {
    html {
        font-size: 14pt;
    }

    .page_title {
        font-size: 24pt;
    }

    .landing .menu {
        top: 5%;
        width: 28%;
        font-size: 12px;
    }
    
    .landing .menu a {
        padding: 5px;
    }
    
    .landing .o4_slogan {
        margin: 23% 0 0 21%;
    }
    
    .landing .o4_slogan .logo {
        width: 12%;
    }
    
    .landing .o4_slogan .slogan_area {
        font-size: 16px;
    }
    
    .landing .title {
        font-size: 38px;
    }
    
    .inquire_container input[type=text], input[type=email], textarea {
        padding: 10px; /* Some padding */ 
        border-radius: 10px; /* Rounded borders */
        margin-top: 2px; /* Add a top margin */
        margin-bottom: 2px; /* Bottom margin */
    }
    
    .inquire_container input[type=submit] {
        padding: 8px 16px;
        margin-top: 2px;
        border-radius: 10px;
    }
    
    .inquire_container {
        width: 30%;
        border-radius: 10px;
        padding: 8px;
        margin: 8% 0 0 57%;
        font-size: 12px;
    }
    
    .inquire_container textarea {
        height: 110px;
    }
    
    .inquire_container .checkbox_group {
        font-size: 10px;
    }

    .inquire_container p {
        font-size: 14px;
    }
     
    .system_introduction .topic_area {
        column-gap: 15px; 
        height: 85%;
        padding: 8% 0 0 0; 
        font-size: 14px;
    }
    
    .art {
        width: var(--aboutus-img-width);
        padding: 2%;
    }
    
    .topic_title {
        padding-bottom: 1%;
        font-size: 18px;
     }
    
    .article {
        padding: 0 5% 0 10%;
        font-size: 14px;
    }
     
    .topic1, .topic2, .topic3 {
        width: 40%;      
        border-radius: 9999px; /* a sufficiently huge value in pixels or any other absolute measurement unit does produce 'perfect 1/4 circle' corners */
    }
       
    .topic1 {
        margin-left: 20%;
    }

    .topic1 .article {
        padding: 0 0 0 11%;
    }
    
    .topic2 {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        padding-right: 30%;
        margin: 10px 0 10px 30%;
    }

    .topic2 .article {
        padding-left: 3%;
    }
    
    .topic3 {
        left: 0;
        padding-left: 25%;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;   
    }

    .paid_plans .plan_area {
        column-gap: 30px;
        height: 40%;
        padding: 15% 0 0 0;
    }

    .paid_plans .block_header {
        margin-top: 8%;
        font-size: 22px;
    }
    
    .paid_plans .plan_area .plan {    
        width: 19%;
    }
    
    .paid_plans .bold {
        font-size: 22px;
        padding-bottom: 20%;
    }
    
    .how_to_join .process_area .step {
        width: 13%;
        height: 230px;
        font-size: 16px;
    }

    .how_to_join .process_area .arrow {
        padding: 0 1% 0 1%;
    }   
}


/* Tablet - laptops: 769px to 1024px*/
@media screen and (max-width: 1023px) and (min-width: 768px) {
    html {
        font-size: 14pt;
    }

    .page_title {
        font-size: 20pt;
    }

    .landing {
        background-size: contain;
    }

    .landing .bk_image_placeholder {
        height: 1100px;
    }

    .landing .menu_area {
        position: absolute;
        width: 100%;
        height: 10%; 
        margin-top: 58%;
    }
    
    .landing .menu {
        right: 24%; 
        width: 50%;
        font-size: 16px;
        position: absolute;
    }
    
    .landing .menu a {
        padding: 5px;
    }
    
    .landing .o4_slogan {
        margin: 20% 0 0 30%;
    }
    
    .landing .o4_slogan .logo {
        width: 12%;
    }
    
    .landing .o4_slogan .slogan_area {
        font-size: 16px;
    }
    
    .landing .title {
        font-size: 36px;
    }

    #Inquire1 {
        display: none;
    }

    #Inquire2 {
        display: inline-flex;
    }

    .inquire_container input[type=text], input[type=email], textarea {
        padding: 10px; /* Some padding */ 
        border-radius: 10px; /* Rounded borders */
        margin-top: 2px; /* Add a top margin */
        margin-bottom: 2px; /* Bottom margin */
    }
    
    .inquire_container input[type=submit] {
        padding: 10px 20px;
        margin-top: 2px;
        border-radius: 10px;
    }
    
    .inquire_container {
        width: 70%;
        border-radius: 10px;
        padding: 10px;
        margin: 65% 0 0 13%;
        font-size: 14px;
    }
 
    .inquire_container td {
        vertical-align:top;
    }
       
    .inquire_container textarea {
        height: 110px;
    }
    
    .inquire_container .checkbox_group {
        font-size: 12px;
    }
    
    .system_introduction .topic_area {
        column-gap: 15px; 
        height: 85%;
        padding: 8% 0% 0 2%; 
        font-size: 20px;
    }
    
    .art {
        width: 12%; /* var(--aboutus-img-width);*/
        padding: 1%;
    }
    
    .topic_title {
        padding-bottom: 1%;
        font-size: 18px;
     }
    
    .article {
        padding: 0 8% 0 8%;
        font-size: 14px;
    }
     
    .topic1, .topic2, .topic3 {
        flex-direction: row;
        width: 98%;      
        border-radius: 9999px; /* a sufficiently huge value in pixels or any other absolute measurement unit does produce 'perfect 1/4 circle' corners */
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        /*padding-right: 58%; */
        margin: 5px 0 5px 0;
    }
       
    .article {
        text-align: left;
    }
    
    .paid_plans .plan_area {
        column-gap: 30px;
        height: 30%;
        padding: 10% 0 0 0;
    }

    .paid_plans .block_header {
        margin-top: 8%;
        font-size: 18px;
    }
    
    .paid_plans .plan_area .plan {    
        width: 20%;
        font-size: 14px;
    }
    
    .paid_plans .bold {
        font-size: 18px;
        padding-bottom: 25%;
    }
    
    .how_to_join .process_area .step {
        width: 16%;
        height: 190px;
        font-size: 12px;
    }

    .how_to_join .process_area .arrow {
        padding: 0 1% 0 1%;
    }   
}

/* Smart Phones - mobile devices: 320px to 480px, tablets and ipads: 481px to 768px */
@media screen and (max-width: 767px) {
    html {
        font-size: 12pt;
    }

    .page_title {
        font-size: 18pt;
    }

    .landing .menu {
        display: none;
        top: 0;
        right: 0;
        width: 18%;
        font-size: 12px;
        background-color: rgba(101,101,101,0.6);  /* #656565 */
    }

    .landing input[type=checkbox]:checked ~ .menu{ 
        display: block;
        top: 6%;
        right: 10%;
    }
       
    .landing .hamburger_menu {
        display: block;  
        position: absolute;
        text-align: center;
        top: 2%;
        right: 10%;
        padding: 0 2px 0 2px;
        margin: 0;
        background-color: rgba(101,101,101,0.6);
    }

    .landing .menu li {
        width: 100%;
        text-align: center;
        margin: 8% 0;
    }
    
    .landing .menu li a {
        width: auto;
    }

    .landing .o4_slogan {
        margin: 35% 0 0 10%;
        width: 80%;
    }
    
    .landing .o4_slogan .logo {
        width: 12%;
    }
    
    .landing .o4_slogan .slogan_area {
        font-size: 10px;
    }
    
    .landing .title {
        font-size: 22px;
    }

    #Inquire1, #Inquire2 {
        display: none;
    }

    .inquire_layout_2 {
        display: inline-flex;
        width: 100%;
        height: 600px;
    }

    
    .inquire_container input[type=text], input[type=email], textarea {
        padding: 10px; /* Some padding */ 
        border-radius: 10px; /* Rounded borders */
        margin-top: 2px; /* Add a top margin */
        margin-bottom: 2px; /* Bottom margin */
    }
    
    .inquire_container input[type=submit] {
        padding: 10px 20px;
        margin-top: 2px;
        border-radius: 10px;
    }
    
    .inquire_container {
        width: 90%;
        border-radius: 10px;
        padding: 10px;
        margin: 15% 0 0 2%;
        font-size: 12px;
    }

    .inquire_container td {
        vertical-align:top;
    }    
    
    .inquire_container textarea {
        height: 110px;
    }
    
    .inquire_container .checkbox_group {
        font-size: 11px;
    }
    
    .system_introduction .bk_image_placeholder {
        height: 864px;
    }

    .system_introduction .topic_area {
        height: 85%;
        font-size: 12px;
        margin-top: 15%;
    }
    
    .art {
        width: 100px;
        padding: 2%;
    }
    
    .topic_title {
        padding-bottom: 1%;
        font-size: 16px;
     }
    
    .article {
        font-size: 11px;
        text-align: center;
    }
     
    .topic1, .topic2, .topic3 {
        flex-direction: column;
        width: 90%;    
        height: 320px;  
        border-radius: 0;
        padding: 0 5% 0 5%;
        margin: 1% 0 1% 0;

        background: rgb(245,184,95);
        background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 25%, rgba(55,154,164,1) 25%, rgba(245,184,95,0.5) 100%);
        background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 25%, rgba(55,154,164,1) 25%, rgba(245,184,95,0.5) 100%);
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 25%, rgba(55,154,164,1) 25%, rgba(245,184,95,0.5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#2f99a5",GradientType=1);    
    }
 
    #plan_area_1 {
        display: none;
    }

    #plan_area_2 {
        display: inline-flex;
    }

    .paid_plans .bk_image_placeholder {
        height: 450px;
    }

    .paid_plans .plan_area {
        flex-direction: column;
        justify-content: center;
        align-items: center;

        width: 100%;
        height: 350px;
        row-gap: 20px;
        margin-top: 15%;
    }

    .paid_plans .block_header {
        font-size: 22px;
        padding: 0;
    }
    
    .paid_plans .plan_area .plan {   
        display: inline-flex; 
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;

        border-radius: 20px;

        width: 85%;
        height: 330px;
        text-align: center;
        font-size: 10px;
    }
    
    .paid_plans .bold {
        font-size: 20px;
    }

    s {
        font-size: 20px;
    }    

    .paid_plans hr {
        visibility: visible;
    }
    
    .how_to_join .bk_image_placeholder {
        height: 550px;
    }

    .how_to_join {
        width: 100%;
        height: 100%;
        object-fit:contain;
    }

    .how_to_join .process_area {
        flex-direction:column;
        justify-content: center;
        align-items: center;
        margin: 12% 0 0 0;
    }
    
    .how_to_join .process_area .step {
        display:inline-flex;
        flex-direction: row;
        /*justify-content: center;*/

        width: 85%;
        height: 70px;
        font-size: 10pt;
    }

    .how_to_join .process_area .step .step_image {
        max-height:90%;
        width: auto;
        height: auto;

        padding: 0 15% 0 20%;
    }
    
    .how_to_join .process_area .arrow {
        transform: rotate(90deg);
    }   
}


@media screen and (max-height: 767px) {
    .paid_plans .plan_area {
        height: 350px;
    }
}
