*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --white:#ffffff;
    --green:#57ce20;
    --light-gray:#f5f9ff;
    --gray:#ecf3ff;
    --deep-blue:#01457c;
    --light-blue:#16619e;
    --charcoal:#363636;
    --black:#000000;
    --footer-gray:#0a0a0a;
    --hr-color:#aeaeae;
    --text-color:#1c1b1b;
    --gray-blue:#53565b;
    --footer-text:#666666;
    --copytext:#353535;
    --copyhyp:#1867dd;
    --input-border:#bbbbbb;
    --pale-red:#e24d4d;
}

html{font-size: 62.5%; /*10 px*/ }
body{
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem; /*16px */
    line-height: 2.4rem;
    font-weight: 400;
    color: var(---text-color);
}
img{max-width: 100%;}

.main_wrapper{
    max-width: 117rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
}
a{
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
hr{
    background: var(--hr-color);
    width: 6.5rem;
    height: 0.4rem;
    outline: none;
    border: 0;
    margin: 0 auto;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
    display: none;
}
.input_holder:not(:last-child){margin-bottom: 1rem;}
input[type="text"],
input[type="email"],
input[type="password"]{
    width: 100%;
    height: 4.5rem;
    border-radius: 0.4rem;
    border: 1px solid var(--input-border);
    padding: 0 1.2rem;
    color: var(--black);
    outline: none;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
}
textarea{
    background: var(--light-gray);
    width: 100%;
    height: 18rem;
    border-radius: 0.4rem;
    border: 1px solid var(--input-border);
    padding: 1.2rem;
    color: var(--black);
    outline: none;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    resize: none;
}
input[type="submit"]{
    background: var(--green);
    width: 20rem;
    height: 5rem;
    margin: 0 auto;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
    outline: none;
    border: 0;
    font-weight: bold;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}
input[type="submit"]:hover{
    background: var(--deep-blue);
}

.dropdown_block{
    width: 100%;
    height: 4.5rem;
    border: 0.1rem solid var(--input-border);
    position: relative;
    border-radius: 0.4rem;
}
.dropdown_block::after{
    position: absolute;
    top: 1.8rem;
    right: 1.5rem;
    border-top: 0.8rem solid var(--input-border);
    border-left: 0.7rem solid transparent;
    border-right:0.7rem solid transparent;
    content: "";
    pointer-events: none;
}
.dropdown_block select{
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 0 1.2rem;
    font-size: 1.4rem;
    color: var(--black);
    font-family: 'Roboto', sans-serif;
    border-radius: 0.4rem;

}
.file_upload {
    margin-top: 0;
}
.file_upload label.fileupload_text {
    background: var(--white);
    width: 100%;
    height: 4.5rem;
    line-height: 4.5rem;
    color: #a09a90;
    font-size: 1.4rem;
    border: 0.1rem solid var(--input-border);
    display: block;
    position: relative;
    padding-left: 1.2rem;
    font-weight: 400;
    border-top-left-radius: 0.4rem;
    border-bottom-left-radius: 0.4rem;
}

.file_upload label.fileupload_text::after {
    clear: both;
    content: "";
    display: block;
}

.file_upload label.fileupload_text span {
    background: var(--white);
    max-width: 80%;
    height: 100%;
    display: block;
    color: var(--input-border);
    font-size: 1.4rem;
    line-height: 4.4rem;
    padding-left: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    font-weight:400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file_upload label.fileupload_text strong {
    background: var(--charcoal);
    width: 10rem;
    height: 4.5rem;
    float: right;
    position: absolute;
    top: -0.1rem;
    right: -0.1rem;
    text-align: center;
    color: var(--white);
    border-top-right-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
}

.file_upload label.fileupload_text strong img {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

label{font-size: 1.4rem; margin-bottom: 0.1rem; color: var(--charcoal); text-align: left; display: block; font-weight: 500;}

/********** HEADER *********/
header{
    background: var(--white);
    padding: 1.3rem 0;
    box-shadow: 0px 3px 12px 0px rgba(187, 187, 187, 0.16);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}
header .main_wrapper{display: flex; flex-wrap: wrap; align-items: center;}
header a.logo{
    flex:0 0 22.8rem;
    height: 5.2rem;
    outline: none;
    border: 0;
}
header nav .navclose{display: none;}
header nav{ margin-left: auto;}
header nav ul{display: flex; align-items: center;}
header nav ul li{list-style: none; position: relative;}
header nav ul li:not(:last-child){margin-right: 2.5rem;}
header nav ul li a{color: var(--black); font-size: 1.6rem; font-weight: 500; text-decoration: none; display: block;}
header nav ul li a:hover,
header nav ul li a.active{color: var(--deep-blue);}
.green{
    background: var(--green);
    text-transform: uppercase;
    color: var(--white) !important;
    font-weight: 700;
    height: 4rem;
    padding: 0 3rem;
    line-height: 4.2rem;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
}
.green:hover{
    background: var(--light-blue);
}

.dashbiard_nav{margin-left: auto;}
.dashbiard_nav ul{display: flex; align-items: center;}
.dashbiard_nav ul li:not(:last-child){margin-right: 2.5rem;}
.dashbiard_nav ul li{list-style: none; position: relative;}
.dashbiard_nav ul li a{
    color: var(--black);
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
}
.dashbiard_nav ul li a:hover,
.dashbiard_nav ul li a.active{
    color: var(--deep-blue);
}
.dashbiard_nav .myaccount{display: block !important;}
.dashbiard_nav .myaccount::after{right: 0; top: 0.9rem;}

.myaccount{position: relative; padding-right: 2.4rem; display: none;}
.myaccount::after{
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    right: -2.4rem;
    top: 0.2rem;
    content: "";
    border-top: 0.1rem solid var(--black);
    border-right: 0.1rem solid var(--black);
    transform: rotate(135deg);
}
.myaccount:hover::after{
    border-color: var(--deep-blue);
}

.myaccount_dropdown{
    background: var(--white);
    width: 20rem;
    padding:0;
    position: absolute;
    right: 0;
    top:5.9rem;
    margin: 0 auto;
    
    display: none;
    border-bottom-left-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.myaccount_dropdown ul{display: flex; flex-direction: column;}
.myaccount_dropdown ul li:not(:last-child){margin-right: 0;}
.myaccount_dropdown ul li{width: 100%;}
.myaccount_dropdown ul li a{
    display: block;
    text-align: left;
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
}
.myaccount_dropdown ul li a:hover{
    background: var(--deep-blue);
    color: var(--white);
}
.userphoto{
    background: var(--deep-blue);
    width: 3.9rem;
    height: 3.9rem;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1.1rem;
    overflow: hidden;
}
/********** END HEADER *********/
.main_full_container{padding-top: 7rem;}

/********* INFO BLOCK **********/
.infoblock{
    background: var(--light-gray);
    padding: 4.5rem 0;
    text-align: center;
}
.infoblock h1{
    margin: 0 0 2rem 0;
    padding: 0;
    font-size: 4.2rem;
    font-weight: 900;
    color:var(--deep-blue);
}
.infoblock p{font-size: 1.8rem; color: var(--charcoal); font-weight: 500;}
/********* END INFO BLOCK **********/

/********* BANNER *********/
.banner_block{
    background: url(../images/wave_banner.jpg) no-repeat center center;
    background-size: cover;
}
.banner_block .main_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 6rem;
}
.banner_block .main_wrapper .textholder{
    flex: 0 0 61.9rem;
    max-width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.banner_block .main_wrapper .textholder h2{
    text-transform: uppercase;
    color: var(--white);
    font-size: 6.5rem;
    margin-bottom: 2rem;
    line-height: 6.5rem;
}
.banner_block .main_wrapper .textholder p{
    font-size: 5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 5rem;
    margin-bottom: 5rem;
}
.banner_block .main_wrapper .textholder a.green{width: 20rem; height: 5rem; text-decoration: none; font-size: 2rem; line-height: 5rem; text-align: center; text-transform: none;}
.banner_block .main_wrapper .imgholder{
    flex:0 0 51.3rem;
    max-width: 100%;
    height: 55.3rem;
    margin-top: auto;
}
/********* END BANNER *********/

/********* WHITE BLOCK *********/
.white_block{
    padding: 8rem 0;
    margin: 0;
    text-align: center;
}
.white_block h2{
    color: var(--black);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.white_block p{font-size: 2.1rem; color: var(--black); margin-bottom: 4rem;}
.white_block .button_holder{
    margin: 0 auto;
    width: 38rem;
    display: flex;
    justify-content: space-between;
}
/********* END WHITE BLOCK *********/

/******** SERVICE BLOCK *************/
.service_block{
    background: var(--gray);
    padding: 8rem 0;
    text-align: center;
}
.service_block h2{
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 2rem;
}
.service_block hr{margin-bottom: 4rem;}
.service_block p{text-align: center; font-weight: 500; padding: 0 8%;} 
.service_block p:not(:last-child){margin-bottom: 3rem;}
.service_block .inner_holder{
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 6rem;
    margin-bottom: 4rem;
}
.service_block .inner_holder .block{
    background: var(--white);
    flex: 0 0 31rem;
    max-width: 100%;
    padding: 3rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    border-radius: 0.6rem;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.service_block .inner_holder .block:hover{
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.20);
}
.service_block .inner_holder .block img{
    margin: 0 auto 3rem;
    width: 10.8rem;
    height: 10.8rem;
}
.service_block .inner_holder .block h3{
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.service_block .inner_holder .block p{
    padding: 0;
    margin: 0;
    color: var(--gray-blue);
    line-height: 2.4rem;
}
.service_block .inner_holder .block p a{font-weight: bold; color: var(--light-blue); text-decoration: none;}
.service_block a.green{display: block; width: 26rem; height: 5rem; margin: 0 auto; text-decoration: none; line-height: 5.5rem;}

/******** END SERVICE BLOCK *************/

/******** CONTACT ******/
.contact_holder{
    padding: 8rem 0;
    text-align: center;
}
.contact_holder h5{
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
}
.contact_holder h2{
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
}

.contact_holder hr{margin-bottom: 3rem;}
.contact_holder p{line-height: 2.6rem;}

.innerfrm_holder{
    background: var(--white);
    width: 50rem;
    margin: 4rem auto 0;
    border-radius: 1rem;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.22);
    border: 1px solid #d7d7d7;
    padding: 3rem;
}

/******** END CONTACT ******/

/******* FOOTER ***********/
footer{
  background: var(--footer-gray);
  padding: 2rem 0;
}
footer ul{display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 0.5rem; padding: 0;}
footer ul li:not(:last-child){margin-right: 1.5rem;}
footer ul li{list-style: none;}
footer ul li a{color:var(--footer-text); font-size: 1.5rem; text-decoration: none;}
footer ul li a:hover{color: var(--white);}
footer p{text-align: center; color: var(--copytext); font-size: 1.4rem;}
footer p a{color: var(--copyhyp); font-weight: bold; text-decoration: none; margin-left: 0.5rem;}
/******* END FOOTER ***********/

/******* REGISTER BLOCK ********/
.register_block{
    background: var(--gray);
    padding: 8rem 0;
    text-align: center;
}
.register_block h1{
    color: var(--black);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 3rem;
}
.register_block p{
    font-size: 1.7rem;
    line-height: 2.8rem;
    color: var(--black);
    margin-bottom: 4rem;
}
.register_block p span{text-transform: uppercase; font-weight: bold;}
.reg_frm_holder{
    margin-top: 6rem;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
.reg_frm_holder .block{
    background: var(--white);
    border-radius: 0.6rem;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}
.reg_frm_holder .block:not(:last-child){margin-bottom:2.5rem;}
.reg_frm_holder .block a.edit{
    background: var(--deep-blue);
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.reg_frm_holder .block a.edit img{margin: 0.4rem auto 0;}
.reg_frm_holder .block h3{
    font-size: 2rem;
    color: var(--charcoal);
    text-align: left;
    border-bottom: 1px solid var(--hr-color);
    padding: 1.5rem  2.5rem;
}
.reg_frm_holder .block h3 span{display: block; font-size: 1.5rem; font-weight: 400; padding-top: 0.2rem;}
.reg_frm_holder .block .inner_holder{padding: 2rem 2.5rem 3rem;}
.reg_frm_holder .block .inner_holder .input_holder{display: flex; flex-wrap: wrap; justify-content: space-between;}
.reg_frm_holder .block .inner_holder .input_holder:not(:last-child){margin-bottom: 1.2rem;}
.reg_frm_holder .block .inner_holder .input_holder .half_block{flex: 0 0 48.5%; max-width: 100%;}
.reg_frm_holder .block .inner_holder .input_holder input[type="text"],
.reg_frm_holder .block .inner_holder .input_holder input[type="email"],
.reg_frm_holder .block .inner_holder .input_holder input[type="password"]{font-size: 1.4rem; padding: 0 1.2rem;}
.infotext{font-size: 1.2rem; color: var(--gray-blue); display: block; text-align: left; line-height: 1.6rem; padding-top: 0.5rem;}

/******* END REGISTER BLOCK ********/

.common_block{
    background: var(--gray);
    padding: 0;
}
.title_block{
    background: var(--deep-blue);
    padding: 4rem 0;
    text-align: center;
}
.title_block h1{
    color: var(--white);
    font-size:4rem;
    line-height: 4rem;
}
.title_block p{
    text-align: center;
    color: var(--white);
    margin-top: 0.5rem;
}
.main_inner_block{
    padding: 6rem 0;
}

.main_inner_block .reg_frm_holder{width: 60%;}

.about_holder p:not(:last-child){margin-bottom: 4rem;}

.faq_holder .block{
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0.6rem;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.faq_holder .block:not(:last-child){margin-bottom:2rem;}
.faq_holder .block h3{margin-bottom: 1.2rem; font-size: 1.8rem;}
.faq_holder .block p:not(:last-child){margin-bottom: 2rem;}

.loginblock{width: 60%; margin: 0 auto 3rem;}
.forgotpsw{margin-top: 2rem; display: block; color: var(--black); font-size: 1.4rem;}
.forgotpsw:hover{text-decoration: none;}
.mobversion{display: none;}

/***** DASHBOARD *****/
.dashboard_block{
    background: var(--gray);
    padding: 8rem 0;
    text-align: center;
}
.basic_block{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}
.basic_block ul.data_display_list{flex: 1;}
.basic_block ul.data_display_list li:not(:last-child){margin-bottom: 1rem;}
.basic_block .photoblock{margin-right: 2rem;}
.frmblock{
    margin-top: 2rem;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 0.6rem;
    -webkit-border-radius: 0.6rem;
    -moz-border-radius: 0.6rem;
    -ms-border-radius: 0.6rem;
    -o-border-radius: 0.6rem;
    position: relative;
}
.frmblock a.cross{
    background: var(--green);
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    position: absolute;
    color: var(--white);
    font-weight: bold;
    text-decoration: none;
    right: -1rem;
    top: -1.5rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.frmblock input[type="Submit"]{
    height: 4rem;
    margin-top: 2rem;
}
.photoblock{
    width: 20rem;
    height: 20rem;
    margin-right: 1.5rem;
    overflow: hidden;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
.photoblock img{width: 100%; height: 100%;}
ul.data_display_list{
    display: flex;
    flex-direction: column;
}
ul.data_display_list li{display: flex; text-align:left;}
ul.data_display_list li:not(:last-child){margin-bottom: 1.5rem;}
ul.data_display_list li .leftdata{flex:0 0 15rem; max-width: 100%; font-size: 1.6rem; margin-right: 3rem; font-weight: bold; position: relative; }
ul.data_display_list li .leftdata::after{position: absolute; top:0; right:0; content: ":";}
ul.data_display_list li .rightdata{flex:0 0 66%; max-width: 100%; font-size: 1.6rem;}
/***** END DASHBOARD ***/

@media only screen and (max-width:767px){
header a.logo{flex: 0 0 20rem;}
nav{
    background: var(--white);
    position: fixed;
    left: -1200px;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 2rem;
}
header nav ul{flex-direction: column; align-items: flex-start;}
header nav ul li{width: 100%;}
header nav ul li:not(:last-child){padding-bottom: 1rem; border-bottom: 0.1rem solid var(--hr-color); margin-right: 0; margin-bottom: 1rem;}
header nav ul li a.green{
    width: 100%;
    display: block;
    text-align: center;
    border-radius:0.4rem;
    -webkit-border-radius:0.4rem;
    -moz-border-radius:0.4rem;
    -ms-border-radius:0.4rem;
    -o-border-radius:0.4rem;
}
.navclose{float: right; margin-bottom: 1rem; font-size: 2rem; text-decoration: none; color: var(--black); height: 2rem; font-weight: 600; display: block !important;}
header .mobile_nav {
    width:2.6rem;
    text-decoration: none;
    margin-left: auto;
}
header .mobile_nav span {
    background:var(--black);
    width: 100%;
    height: 4px;
    display: block;
}
header .mobile_nav span:not(:last-child){margin-bottom: 3px;}
.dashbiard_nav ul li span{display: none;}
.userphoto{margin-right: 0;}

.infoblock{padding: 2.5rem 0;}
.infoblock h1{font-size: 2.5rem; line-height: 2.8rem;}
.infoblock p{font-size: 1.6rem;}

.banner_block .main_wrapper{flex-direction: column; padding-top: 3rem; padding-bottom: 3rem;}
.banner_block .main_wrapper .textholder{flex: 1; align-items: center;}
.banner_block .main_wrapper .textholder h2{font-size: 3rem; line-height: 3rem; text-align: center; margin-bottom: 0;}
.banner_block .main_wrapper .textholder p{font-size:2.8rem; text-align: center; display: block; margin-bottom: 2rem;}
.banner_block .main_wrapper .imgholder{display: none;}
.banner_block .main_wrapper .textholder a.green{margin: 0 auto;}
.mobversion{margin: 0 auto;}

.innerfrm_holder{width: 90%; box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);}
.white_block .button_holder{width: auto;}
.mobversion{width: 15rem; display: block;}

.white_block{padding: 4rem 0;}
.white_block h2{font-size: 3rem; line-height: 3.5rem;}
.white_block p{font-size: 1.8rem;}
.white_block .button_holder{flex-direction: column;}
.white_block .button_holder a:not(:last-child){margin-bottom: 1rem;}

.service_block{padding: 4rem 0;}
.service_block h2{font-size: 2.6rem;}
.service_block p{padding: 0;}
.service_block p:not(:last-child){margin-bottom: 2rem;}
.service_block .inner_holder{padding: 0; justify-content: center;}
.service_block .inner_holder .block:not(:last-child){margin-right: 0; margin-bottom: 1.5rem;}

.contact_holder{padding: 4rem 0;}
.contact_holder h2{font-size: 2.6rem;}
.service_block hr{margin-bottom: 2rem;}

.title_block{padding: 2.5rem 0;}
.title_block h1{font-size: 3rem;}
.main_inner_block{padding: 2.5rem 0;}
.about_holder p:not(:last-child){margin-bottom: 2.5rem;}

.main_inner_block .reg_frm_holder{width: 100%;}
.reg_frm_holder .block .inner_holder .input_holder{flex-direction: column;}
.reg_frm_holder .block .inner_holder .input_holder .half_block:not(:last-child){margin-bottom: 1rem;}

.loginblock{width: 100%;}
.register_block{padding-left: 1.5rem; padding-right: 1.5rem; padding-top: 4rem;}
.reg_frm_holder{width: 100%;}

.register_block h1{font-size: 3rem;}
.register_block p br{display: none;}

/*** DASHBOARD ***/
.basic_block{flex-direction: column;}
.basic_block .photoblock{margin: 0 auto 2rem;}
ul.data_display_list li{flex-direction: column;}
ul.data_display_list li .leftdata{flex: 1;}
ul.data_display_list li .leftdata::after{display: none;}
ul.data_display_list li:not(:last-child){border-bottom: 0.1rem solid var(--gray); padding-bottom: 0.5rem; margin-bottom: 0.5rem;}
/*** END DASHBOARD ***/
}

@media only screen and (min-width:768px) and (max-width:1023px){
    header nav ul li:not(:last-child){margin-right: 1.5rem;}
    header nav ul li a.green{padding: 0 2rem;}
    .mobversion{display: none;}
    .infoblock h1{font-size: 3.5rem;}
    .infoblock p{padding: 0 10%;}
    .banner_block .main_wrapper .textholder{flex: 1;}
    .banner_block .main_wrapper .textholder h2{font-size: 3.8rem; line-height: 3.5rem; margin-bottom: 1rem;}
    .banner_block .main_wrapper .textholder p{font-size: 3rem; line-height: 3rem; margin-bottom: 2rem;}
    .banner_block .main_wrapper .imgholder{flex: 0 0 36rem; height: auto; margin: 0 0 -0.7rem 0;}
    .banner_block .main_wrapper{padding-top: 2rem;}
    .service_block p{padding: 0;}
    .service_block .inner_holder{padding: 0;}
    .service_block .inner_holder .block{flex: 0 0 23.9rem;}
    .service_block .inner_holder .block:not(:last-child){margin-right: 1rem;}
    .service_block .inner_holder .block h3{font-size: 2.7rem;}

    .main_inner_block .reg_frm_holder{width: 80%;}
    .loginblock{width:80%;}
    
    .register_block{padding-left: 1.5rem; padding-right: 1.5rem; }
    .register_block h1{font-size: 3rem;}
    .register_block p br{display: none;}
    .reg_frm_holder{width: 80%;}

    /*** DASHBOARD ***/
    .basic_block{flex-direction: column;}
    .basic_block .photoblock{margin-right: 0; margin-bottom: 2rem;}
    /*** END DASHBOARD ***/
}

@media only screen and (min-width:1024px) and (max-width:1200px){    
    .banner_block .main_wrapper .textholder{flex: 1;}
    .banner_block .main_wrapper .textholder h2{font-size: 5.7rem; line-height: 5.7rem; margin-bottom: 2rem;}
    .banner_block .main_wrapper .textholder p{font-size: 4rem; line-height: 3rem; margin-bottom: 5rem;}
    .banner_block .main_wrapper .imgholder{flex: 0 0 45rem; height: 48.5rem;}
    .banner_block .main_wrapper{padding-top: 2rem;}
    .service_block .inner_holder{padding: 0;}

    .loginblock{width:70%;}
    .reg_frm_holder{width: 70%;}

    .basic_block .photoblock{margin-right: 2rem;}
}

@media only screen and (min-width:1280px){
}

@media only screen and (min-width:1400px) {
    .reg_frm_holder{width: 55%;}
}

@media only screen and (min-width:1440px) {
    .reg_frm_holder{width: 55%;}
}

@media only screen and (min-width:1920px){
    .reg_frm_holder{width: 42%;
}