/*------------------------general browser settings ------------------------*/
* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}
body {
    margin: 0px;
	background-color:#0C9;
}
input, textarea, select, option {
	width:100%; height:100%;
	border: none;
    outline: none;
    font-size: 1em;
}

a {
    text-decoration: none;
}

div {
    font-family: Arial, Helvetica, sans-serif; font-size: 1vw;	
}

table thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    background-color: #ccb78f;
}
/*----------*/



/*-------------------------application elements----------------------------*/
/*chat bot*/
.k_bot0 { 
    z-index:101; 
    position:fixed; bottom:5px; right:30px; 
    width: 25vw; aspect-ratio: 1/1.2; 
    background-color:#f1f1f1; box-shadow:  0px 0px 10px 1px #000000; border-radius:9px 9px 0px 0px;
    overflow: hidden;
    display: none;
   
}
.k_bot5 { 
    width:auto; max-width:80%; padding:10px; border-radius:0px 10px 10px 10px; white-space: pre-wrap; background-color:rgb(246, 237, 237); float:left; 
}
.k_bot6 { 
    width:auto; max-width:80%; padding:10px; border-radius:10px 0px 10px 10px; white-space: pre-wrap; background-color:rgb(253, 249, 241);  float:right; 
}
.k_chatline {
    width:100%; padding:5px; float:left;
}
.k_userbot {
    width: auto; max-width:80%; padding:10px; border-radius:10px 0px 10px 10px; white-space: pre-wrap; background-color:#ffe0e0; float: right;
}
.k_sysbot { 
    display:inline-block; 
    width: auto; width:auto; max-width:80%; padding:20px; border-radius:0px 10px 10px 10px; white-space: pre-wrap; background-color:#f1f1f1;  
}

/*close button*/
.r_cbtn { 
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    display: none;
    z-index: 11;
}

/*humburger menu*/
.r_micon {
    position: absolute;
    top: 20px;
    left: 10px;
	display: none;
    z-index: 12;
    transition: 1s;
}
.r_miconl {
    background-color: orange;
    width: 35px;
    height: 5px;
    margin: 6px;
}
/*sticky header*/
.k_sticky0 {
    position: fixed; 
    top:0px;
    width:100%; height:auto;
    transition: 1s;
    background-color: rgb(244, 244, 244);
    overflow: hidden;
    z-index: 10;
}


















/* predefined elments */





.tt_card1 {
    width: 100%; height:auto; float: left; background: linear-gradient(to bottom, white, white,  white, rgb(239, 239, 239)); 
}
.k_slidercase {
    width:100%; height:100%;
    overflow: hidden; 
}
.k_slider {
    width:300%; height: 100%;
    animation: slideAnimation 30s infinite;
}
.k_slide {
    width:33.33%; height: 100%;
    float:left;
    transition: 0.5s;
    padding:1vw 2vw;
}

.tt_card2 {
    width: 100%; height: auto; float: left; overflow: hidden;
    background: linear-gradient(to bottom, white, white,  white, rgb(239, 239, 239));    
    padding: 10px;
}

.tt_card3 {
    width: 100%; height: auto; float: left;  overflow: hidden;
    background-color: navy;
    padding:10px;
    color: white;
}



@keyframes slideAnimation {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-33.33%); }
    50%, 70% { transform: translateX(-66.66%); }
    75%, 95% { transform: translateX(-33.33%); }
}

.k_line{
    width:100%; padding: 5px 20px;
}
.k_line50 {
    width:100%; height: 50px; padding: 5px 20px; line-height: 40px;
}
.k_line80 {
    width:100%; height: 80px; padding: 5px 20px; line-height: 40px;
}

.k_hidden {
    left:100%;
}
.tt_icon70{
    width:70px; height: 70px; cursor: pointer;
}
.tt_icon50{
    width:50px; height: 50px; cursor: pointer;
}
.tt_canvas1 {
    width:50%; height:auto; float: left;
}
.tt_img1 {
    width:100%;
}
.k_hand {
    cursor: pointer;
}


.k_ph1 { /*placeholder */
   width:15%; height:80%; float:left;  
}
.k_logo1 {
    width: 80%; height:auto; float:left; padding:5px;
}
.k_dtm { /*desktop menu */
    display: none;
    width:50%; height:80%; float:left; padding:5;
}







/*load progress*/
.tt_loading {
	position:absolute;left: calc(50% - 60px);top: calc(40% - 60px); width: 120px; height: 120px;  
    z-index: 21;
    display: none;
}
.tt_loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid orange;
    border-bottom: 16px solid rgb(0, 0, 0);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
/*message and dialog box */
.msg_box {
    position: absolute; top: 25%;left: 10%; width: 80%; height: 50%; box-shadow:  0px 0px 10px 1px #000000;
    background-color: #f0f0f0; border-radius: 3px;
    z-index: 20;
    display: none;
}
.msg_txt {
    position: absolute; top: 40%; width: 100%; text-align: center; font-family: Arial, Helvetica, sans-serif; font-size: 14px;
    padding: 20px;  -ms-transform: translateY(-50%);
    transform: translateY(-50%); 
}
.dlg_box {
    position: absolute;  top: 25%; left: 10%; width: 80%; height: 50%;box-shadow:  0px 0px 10px 1px #000000;   
    background-color: #f0f0f0; border-radius: 3px;
    z-index: 20;
    display: none; 
}
.dlg_txt {
    position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 80%; height: 50%;font-family: Arial, Helvetica, sans-serif;
    margin: auto; text-align: center; 
    font-size: 12px;
}
.msg_okbtn {
    position: absolute; top: 80%; width: 100%; height: 20%; text-align: center; font-weight: bolder;
    z-index: 2; font-size: 20px;
    color: #000000;
    text-decoration: underline;
}



/*application body*/
.tt_body {
    position: absolute; left:0px; top:0px; width: 100%; height: 100%; overflow:hidden;
	/*font-family: Arial, Helvetica, sans-serif;
    /*pointer-events:none;*/
    opacity: 1; background-color:#f1f1f1;
}

/*general page */
.tt_page{
	position:absolute; left:-100%; top:0px; width:100%; height:100%;
	background-color:#FFF;
	overflow-y:scroll;
	z-index:2;    
    transition: 0.5s;
}
/*header place holder*/
.hp_holder { width: 100%; height: 80px; text-align: center; line-height: 60px; font-weight: bold; }

/*paragraph*/
.tt_pgh { width: 100%; height: auto;}

.tt_imgw100xa {
	width: calc(100% - 1px);
    height: auto;  
}
.ttmnu_list { /* fixed height */
    width: 100%;
    height: 75px;
    background-color: #ffffff;
    text-align: left;
    border-bottom: solid #cacaca 1px;
    
    font-size: 12px;
    line-height: 25px;
}

.tt_listah { /* auto height */
    width: 100%;
    height: auto;
    background-color: #ffffff;
    padding: 15px;
    text-align: left;
    border-bottom: solid #cacaca 1px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 25px;
}

/*tt_card*/
.tt_card50x100 {
	width: 50%; height: 100%;
	float: left;
}
.tt_card300xa {
    width: 300px; height: auto;
}
.k_80xa { width: 80px; height: auto;}
.k_120x50 {width: 120px; height: 50px;}

/*display modes*/
.k_inlblock {display:inline-block;}




/*text elements*/
.k_font1 {font-family: Arial, Helvetica, sans-serif; font-size:0.8rem;}

.tt_font2 { font-family: Arial, Helvetica, sans-serif; font-size: 12px;}
.tt_font3 { font-family: Arial, Helvetica, sans-serif; font-size: 13px;}
.tt_txt1 { font-size: 18px; }
.tt_txt2 { font-family: Arial, Helvetica, sans-serif; font-size: 14px;}
.tt_f28 { font-size: 28px;}
.tt_f20 { font-size: 20px;}
.tt_f13 { font-size: 13px;}
.tt_f12 { font-size: 12px;}
.tt_f14 { font-size: 14px;}
.tt_f16 { font-size: 16px;}
.tt_f18 { font-size: 18px;}
.k_f1vw { font-size: clamp(12px, 1vw, 14px);}
.k_f1p3vw { font-size: 1.3vw;}
.k_f1p4vw { font-size: 1.4vw;}
.k_f1p6vw { font-size: 1.6vw;}
.k_f1p8vw { font-size: clamp(18px, 1.8vw, 20px);}
.k_f2vw { font-size: clamp(18px, 2vw, 28px);}

.k_ftitle {
    font-size: 1.4rem; font-weight: bold;
}
.k_f75p {
    font-size: 75%;
}


/*font size*/
.k_txt10 { font-size: 10px;}
.k_txt24 { font-size: 24px;}

/*font face */
.k_bold {font-weight: bold;}

/*line height */
.k_lnh300 {line-height: 300px;}
.k_lnh200 {line-height: 200px;}
.k_lnh100 {line-height: 100px;}
.k_lnh50 {line-height: 50px;}
.k_lnh44 {line-height: 44px;}
.k_lnh30 {line-height: 30px;}
.k_lnh24 {line-height: 24px;}
.k_lnh20 {line-height: 20px;}
.k_lnh18 {line-height: 18px;}
.k_lnh100p {line-height: 100%;}
.k_lnh10p {line-height: 10%;}
.k_lnh1vw {line-height: 1vw;}
.k_lnh1p5vw {line-height: 1.5vw;}
.k_lnh2vw {line-height: 2vw;}

/*text alignments */
.k_tal {text-align: left;}
.k_tar {text-align: right;}
.k_tac {text-align: center;}
.k_taj {text-align: justify;}


/*icons*/ 
.k_icon1 {width: 2.4vw; aspect-ratio: 1/1; float: left; margin: 3px; cursor: pointer; overflow: hidden; display: flex; justify-content: center; align-items: center; }
.k_icon2 {width: 1.5vw; aspect-ratio: 1/1; float: right; padding: 5px; border-radius: 0.75vw; cursor: pointer; overflow: hidden; display: flex; justify-content: center;}
.k_iconwa {width: auto; height: 46px; overflow: hidden; color: white; cursor: pointer; stroke: white;}
.k_stroke1 {stroke:black;}
.k_stroke2 {stroke:orange;}
.k_icon25p {
    width:25%; aspect-ratio: 1/1; 
}
.k_icon50p {
    width:50%; aspect-ratio: 1/1; 
}

.k_chat {
    width:16vw; aspect-ratio: 1/1;
    position:fixed; bottom:10px; right:30px;
    padding:0.5%;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

/*inputs*/
.k_in1 {height: 2vw; width: auto; margin: 0.5vw;}

/*buttons*/
.k_btn1 { height: 2vw; line-height: 2vw; text-align: center; border-radius: 3px; background-color: #b99955; cursor: pointer; color:#ffffff; }




/*active tab and passive tab*/
.k_tab0 {/*w_10vw h_2p5vw k_floatl k_bg2 k_brdrrs3 ovf_h k_pad0p5vw*/
    width: 10vw; height: 2.5vw; float: left; background-color: #fdfaf5; border-radius: 0px 0.5vw 0px 0px; overflow: hidden; padding: 0.5vw; margin: 0.5vw 0.25vw; cursor: pointer;
}
.k_tab1 {/*w_10vw h_2p5vw k_floatl k_bg11 k_brdrrs3 ovf_h k_pad0p5vw k_mal5 k_hov3*/
    width: 10vw; height: 2.5vw; float: left; background-color: #c6b9a0; border-radius: 0px 0.5vw 0px 0px; overflow: hidden; padding: 0.5vw; margin: 0.5vw 0.25vw; cursor: pointer;
}


/*----------*/



























/* --------------------- common properties ---------------------------*/
/*background colors */
.k_bg1 { background-color: #fcf2da; }
.k_bg2 { background-color: #fdfaf5; }
.k_bg3 { background-color: #b99955; }
.k_bg4 { background-color: #7d6938; }
.k_bg5 { background-color: black; }
.k_bg6 { background-color: rgb(212, 203, 203); }
.k_bg7 { background-color: #444444;}
.k_bg8 { background-color: #b99955;}
.k_bg9 { background-color: #886c3c;}
.k_bg10 { background-color: #f5efe4;}
.k_bg11 {background-color: #c6b9a0;}


/*gradient background */
.k_grad1 {
    background: linear-gradient(to bottom, #f9e9c0, white, #7d6938 );
}
.k_grad2 {
    background: linear-gradient(to top, white, white, rgb(97, 97, 97));
}
.k_grad3 {
    background: linear-gradient(to top, white, white, rgb(97, 97, 97));
}

/*svg fills*/
.k_svgfill1 {fill: #025852;}
.k_svgfill2 {fill: #ffffff;}

/*foreground colors*/
.k_fcolor1 { color: black; }
.k_fcolor2 { color: orange; }
.k_fcolor3 { color: rgb(252, 225, 175); }
.k_fcolor4 { color: #ffffff; }
.k_fcolor5 { color: maroon; }
.k_fcrre {color: #025852; }

/*boarders*/
.k_brdr1 {border:solid black 1px;}
.k_brdr2 {border:solid orange 1px;}
.k_brdrr2 {border-radius: 2px;}
.k_brdrr3 {border-radius: 3px;}
.k_brdrr7 {border-radius: 7px;}
.k_brdrr25 {border-radius: 25px;}
.k_brdrrt1 {border-right:solid #f0f0e7 1px;}
.k_brdrlt1 {border-left:solid #f0f0e7 1px;}
.k_brdrbm1 { border-bottom: solid #f0f0e7 1px;}
.k_brdr5 {border:solid #025852 1px; }
.k_brdrb1 {border-bottom:solid #d3dddc 1px;}
.k_brdrb2 {border-bottom:solid orange 2px;}
.k_brdrb3 {border-bottom:solid #000000 1px;}
.k_brdrt1 {border-top:solid #97bad4 1px;}
/*border radius */
.k_brdrr100 {border-radius:100px; }
.k_brdrr50 {border-radius:50px; }
.k_brdrr35 {border-radius:35px; }
.k_brdrr5 {border-radius:5px; }
.k_brdrr15 {border-radius:15px; }
.k_brdrr8 {border-radius:5px; }
.k_brdrrs1 {border-radius: 0px 0px 0.5vw 0px;}
.k_brdrrs2 {border-radius: 0px 0px 0px 0.5vw;}
.k_brdrrs3 {border-radius: 0px 0.5vw 0px 0px;}
.k_brdrrs4 {border-radius: 0.5vw 0px 0px 0px;}
.k_brdrr1vw {border-radius: 1vw;}
.k_brdrr0p75vw {border-radius: 0.75vw;}

/*paddings*/
.k_pad40 { padding: 40px;}
.k_pad20 { padding: 20px;}
.k_pad16 { padding: 16px;}
.k_pad15 {padding: 15px;}
.k_pad10 {padding: 10px;}
.k_pad8 {padding: 8px;}
.k_pad5 {padding: 5px;}
.k_pad3 {padding: 3px;}
.k_pad2 {padding: 2px;}
.k_pad40_20 { padding: 40px 2px;}
.k_pad5_20 { padding: 5px 20px;}
.k_pad0p3vw {padding:0.3vw;}
.k_pad0p5vw {padding:0.5vw;}
.k_pad1vw {padding:1vw;}
.k_pad2vw {padding:2vw;}
.k_pad1p2vw {padding:1.2vw;}
.k_pad5p10p { padding:5vw 10vw; }
.k_padt4p {padding-top: 4%;}




/*width and height*/
.tt_2part{width:100%;}
.tt_3part {width:100%;}
.tt_4part {width:50%;}
.w_0p5vw {width: 0.5vw;}
.w_0p8vw {width: 0.8vw;}
.w_1vw {width:1vw;}
.w_1p2vw {width: 1.2vw;}
.w_1p5vw {width:1.5vw;}
.w_2vw {width:2vw;}
.w_2p5vw {width:2.5vw;}
.w_3vw {width:3vw;}
.w_5vw {width:5vw;}
.w_6vw {width:6vw;}
.w_8vw {width:8vw;}
.w_10vw {width:10vw;}
.w_40vw {width: 40vw;}
.w_30vw {width:30vw;}
.w_240vw {width:25vw;}
.w_10vw {width:10vw;}
.w_100p { width: 100%;}
.w_90p { width: 90%;}
.w_85p { width: 85%;}
.w_80p { width: 80%;}
.w_71p { width: 71%;}
.w_70p { width: 70%;}
.w_65p { width: 65%;}
.w_60p { width: 60%;}
.w_50p {width: 50%;}
.w_40p {width: 40%;}
.w_34p {width: 34%;}
.w_33p {width: 33%;}
.w_30p {width: 30%;}
.w_25p {width: 25%;}
.w_20p {width: 20%;}
.w_15p {width: 15%;}
.w_10p {width: 10%;}
.w_5p {width: 5%;}
.w_100 {width: 100px;}
.w_200 {width: 200px}
.w_70 {width: 70px;}
.w_60 {width:60px;}
.w_50 {width: 50px;}
.w_40 {width: 40px;}
.w_30 {width: 30px;}
.w_auto {width: auto;}
.w_150 {width: 150px;}
.w25p {width: 25%;}
.w_10p {width: 10%;}
.w_20p {width: 20%;}
.w_5p {width: 5%;}
.w_4p {width: 4%;}
.w_3p {width: 3%;}
.w50p {width: 50%;}
.w45p {width: 45%;}
.h_min2t1 {min-height: 0.5vw; }
.w_100pm3p5vw {width: calc(100p - 3.5vw);}
.w_min100p {min-width: 100%;}

.h_1t1 {aspect-ratio: 1/1;}
.h_2t1 {aspect-ratio: 2/1;}
.h_4t1 {aspect-ratio: 4/1;}
.h_5t1 {aspect-ratio: 5/1;}
.h_6t1 {aspect-ratio: 6/1;}
.h_10t1 {aspect-ratio: 10/1;}
.h_20t1 {aspect-ratio: 20/1;}
.h_25t1 {aspect-ratio: 25/1;}
.h_1t2 {aspect-ratio: 1/2;}
.h_3t2 {aspect-ratio: 3/2;}
.h_10t1 { aspect-ratio: 10/1;}
.h_100p { height: 100%;}
.h_90p { height: 90%;}
.h_85p {height: 85%;}
.h_80p {height: 80%;}
.h_70p {height: 70%;}
.h_60p {height: 60%;}
.h_50p {height: 50%;}
.h_30p {height: 30%;}
.h_20p {height:20%;}
.h_15p {height:15%;}
.h_10p {height:10%;}
.h_5p {height:5%;}
.h_auto {height: auto;}
.h_50ph {height: 50vw;}
.h_80ph {height:80vw;}
.h_100ph {height:100vw;}
.h_45 {height:45px;}
.h_70 {height: 70px;}
.h_75 {height: 75px;}
.h_50 {height: 50px;}
.h_80 {height: 80px;}
.h_100 {height: 100px;}
.h_120 { height: 120px;}
.h_200 {height: 200px;}
.h_300 {height: 300px;}
.h_26 {height: 26px;}
.h_40 {height: 40px; }
.h_30 {height: 30px;}
.h_25 {height: 25px;}
.h_20 {height: 20px;}
.h_0p5vw {height:0.5vw;}
.h_1vw {height:1vw;}
.h_2vw {height:2vw;}
.h_2p5vw {height:2.5vw;}
.h_3vw {height:3vw;}
.h_4vw {height:4vw;}
.h_25vw {height: 25vw;}
.h_100pm3vw {height: calc(100% - 3vw);}
.h_max1000 {max-height: 1000px;}
.h_100pl6vw { height: calc(100% - 6vw); }

/*position and alignments*/
.k_posa {position:absolute;}
.k_posr {position: relative;}
.k_posfx {position: fixed;}
.k_top0 {top: 0px;}
.k_left0 {left: 0px;}


.txt_c { text-align: center;}

.k_vhc {top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);}
.k_vhc2 {top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);}
.k_vc {  -ms-transform: translateY(-50%); transform: translateY(-50%);}
.k_hc {  -ms-transform: translateX(-50%); transform: translateX(-50%); }
.k_floatl {float: left;}
.k_floatr {float: right;}
.k_justc {justify-content: center;}
.k_aic {align-items: center;}

/*margins*/
.k_ma {margin: auto;}
.k_ma1 {margin: 1px;}
.k_m3 {margin: 3px;}
.k_m5 {margin: 5px;}
.k_mal5 {margin-left: 5px;}
.k_m10 {margin: 10px;}
.k_m0p2p {margin:0 2%;}
.k_m5_10 {margin:5px 10px;}
.k_m10_10_5_10 {margin:15px 10px 5px 10px;}
.k_mgnl10 { margin-left: 10px;}
.k_mt0p5vw { margin-top: 0.5vw;}
.k_mt1vw { margin-top: 1vw;}

/*top and left */
.k_btm20 {bottom: 20px;}
.k_btm40 {bottom: 40px;}
.k_btm50 {bottom: 50px;}
.k_lft50p {left: 50%;}
.k_top50p {top: 50%}


/*table*/
.k_th { background-color: #ccb78f; font-weight: bold;}
.k_tr0 {background-color: #f1f1f1; }
.k_tr1 {background-color: #ffffff; }
.k_td { font-family: Arial, Helvetica, sans-serif; font-size: 0.85vw; white-space: nowrap; padding: 0.3vw; }


/*display*/
.k_ofa {overflow: auto;}
.tt_bk {display: block;}
.ovf_h {overflow:hidden;}
.ovf_s {overflow: scroll;}
.ovf_dots {text-overflow: ellipsis;}
.k_nowrap {white-space: nowrap;}
.k_lofixed {table-layout: fixed;}
/*scroll style*/
.k_scrolly {overflow-y: scroll;}
.k_scrollnb {
    &::-webkit-scrollbar {
        display: none;
      }
      /* Hide scrollbar for IE, Edge, Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
}
.k_sticky1 {
    position: sticky;
}

/*suggestion box */
.k_flyout1 {display: none; position: absolute; left: 220px; top: 220px; width: auto; max-width: 25vw; max-height: 70vh; overflow: hidden;
    padding: 0.5vw;  background-color: #ffffff; z-index: 202; box-shadow:  0px 0px 3px 1px #9f9f9f
}

/*box transtion */
.k_smooth1 {
    transition: width 2s ease, height 2s ease;
}
.k_tans1{
    transition: 1s;
}

/*box rendering*/
.k_shadow1 {
    box-shadow:  0px 0px 10px 1px #000000
}

/*hover effect*/
.k_hov1:hover { stroke: #886c3c;}
.k_hov2:hover { background-color: #ede1c9;}
.k_hov3:hover { background-color: #fcf2da;}
.k_hov4:hover { background-color: #d4cbcb; }

/*displays*/
.k_dipflx {display: flex;}
.k_diptbc {display: table-cell;}
.k_dispbl {display: inline-block;}
.k_dispn {display: none;}
.k_fit {object-fit:cover;}


/*zindex */
.kz_10 {z-index: 10;}
.kz_1 {z-index: 1;}
.kz_2 {z-index: 2;}
.kz_3 {z-index: 3;}
.kz_4 {z-index: 4;}


/*unordered list styles*/
.k_nodot {
    list-style-type:none;
}
.k_ulsq  li::marker {
    list-style-type: circle;  font-size: 30px;
}




/*elements*/







/*-------------------------------------default mobile -----------------------------*/
/*section switching from 100p to 50p on desktop and mobile*/
.s_100t50p { width: 100%; }














/*-------------------------------------tablet -----------------------------*/
@media (min-width: 820px) and (max-width: 1200px){
    /*section switching from 100p to 50p on desktop and mobile*/
    .s_100t50p { width: 100%; }
    
}












/* --------------------------------------desktop --------------------------*/
@media (min-width: 1200px){
    /*section switching from 100p to 50p on desktop and mobile*/
    .s_100t50p{ width: 50%; }

    #ttlogin {padding: 10vw;}
    #kboth {padding: 5vw;}
    
}



