@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Montserrat:wght@300;400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Wire+One&display=swap');



/* Root */
:root {
    --white: #FFFFFF;
    
	--primary-color: #EDE3FB;
    
    --material_ruby: #e91e63;
    --cyan_blue: #2196f3;
    --iris_blue: #00bcd4;
	
	
}



/* Basic CSS */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

.portfolio_body{
    background: #1b1b1b;
    color: #e5e5e5;
}

a{
    text-decoration: none;
	cursor: pointer;
}

.portfolio_body a{
    text-decoration: none;
	cursor: pointer;
    color: inherit;
    
}

select{
	cursor: pointer;
}


button{
    outline: none;
    cursor: pointer;
}


.clearfix::after {
  content: "";
  clear: both;
  display: table;
}


/* Hide Scrollbar */
.hide_scrollbar::-webkit-scrollbar {
    display: none;
}

.hide_scrollbar {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}


.text_left{
	text-align: left !important;
}
.text_right{
	text-align: right !important;
}
.text_center{
	text-align: center !important;
}

/* Font Family Setup */
p, h1, h2, h3, h4, h5, h6, table, tr, th, td, button, label, input, a{
    font-family: 'Roboto', sans-serif;
}

.main_container{
    position: fixed;
    width: 100%;
    height: 100%;
    
}


.white_bg{
	background-color: var(--white);
}






/* HomePage */
/* Heading */
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    
    padding: 0 20px;
    z-index: 1;
}

.header_menu_inside{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.header_sticky{
    background: #1b1b1b;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);
    
}

.menu_item_mobiles{
    display: block;
    padding: 24px 10px;
    border-top: 1px solid #c1c1c1;
    background: #1b1b1b;
}

.menu_heading, .menu_item{
    font-size: 16px;
    padding: 8px 8px;
    min-width: 64px;
    font-weight: 500;
    line-height: 1.75;
    border-radius: 4px;
    letter-spacing: .02857em;
    text-transform: uppercase;

}

.menu_heading{
    font-size: 20px;
}



/* Overview Section */
#overview_section{
    height: 100vh;
    position: relative;
}

.overview_section_inside{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.overview_profile_img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}


.overview_profile_name{
    font-size: 4rem;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 10px;
    
}

.overview_iam_text{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: .01071em;
    margin-top: 30px;
}

.portfolio_not_found{
    color: #1b1b1b;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.43;
    letter-spacing: .01071em;
}

.overview_profile_links{
    margin-top: 20px;
}
.overview_profile_link_item{
    font-size: 30px;
    display: inline-block;
    margin: 6px;
}








.welcome_text_section{
    background: #fff;
    color: rgba(0, 0, 0, .8);
    padding: 40px 20px;

    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 0.5px;
    line-height: 2.5rem;
    margin: 5px 0;
}

.welcome_text_inside{
    margin: 0 auto;
    max-width: 900px;
    text-align: justify;
}

.welcome_heading, .welcome_p{
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 0.5px;
    line-height: 2.5rem;
    margin: 5px 0;
}
.welcome_heading{
    font-weight: 500;
    margin-bottom: 30px;
}






.portfolio_text_keeper{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 180px;

}

.portfolio_text{
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 1.235;
    letter-spacing: .00735em;
}








.projects_section{
    padding: 50px 20px;
    background-color: #fff;
}


.top_projects_main_heading{
    margin: 20px 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.334;
    letter-spacing: 0em;
    color: rgba(0, 0, 0, .8);
}


.project_items_keeper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.project_item{
    padding: 20px;
}

.project_item_inside{
    padding: 20px;
    background-color: #0a74db;
    color: #fff;
    width: 100%;
    max-width: 450px;
    max-width: 360px;
    border-radius: 4px;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);
}

.project_item_inside{
    box-shadow: 2px 1px 1px 2px #d6d6d6;
    background-color: #ffffff;
    border-radius: 9px;
    margin: 30px 0;
    /* color: #242234; */
    overflow: hidden;
    transition: all 0.4s;
    width: 100%;
}
.project_item_inside:hover {
    background-color: #f5f5f5;
    box-shadow: 5px 3px 6px 2px #d6d6d6;
}


.project_item_img_keeper{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project_item_img{
    width: 100%;
    max-width: 120px;
    max-height: 120px;
}

.project_item_heading{
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .0075em;
    margin: 0;

    font-size: 1.50rem;
    margin-top: 20px;
    min-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project_item_description{
    margin: 0 0 1.45rem;
    padding: 0;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.4rem;
    margin-top: 15px;

    height: 160px;
    overflow: hidden;
    


    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.13rem;
    font-weight: 300;
    font-style: normal;
}


.project_item_link:hover{
    background-color: rgba(0, 0, 0, .04);
}





.footer{
    display: flex;
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
    flex-wrap: wrap;
}

.footer_item{
    width: 50%;
    padding: 10px;
}

.footer_item_extended{
    width: 50%;
    padding: 10px 20px;
    padding-left: 50px;
}
.footer_item_heading{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer_item_content_heading{
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.footer_item_content_anchor{
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 5px;
    color: #fff;
}

.footer_item_content_space{
    padding: 10px 0;
}


.footer_contact_heading{
    margin-bottom: 20px;
}

.footer_submit_btn{
    padding: 10px;
    width: 100%;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 14px auto;
    margin-top: 0;
    background-color: #2196f3;
    color: white;
    border: none;
    border-radius: 3px;
    transition: all 0.2s;
    box-shadow: 0 1px 1px 0 rgba(42, 46, 69, 0.32);
}


.footer_submit_btn:hover{
    background-color: #1565c0;
    box-shadow: 0px 6px 10px 0 rgba(42, 46, 69, 0.32);
}


.footer_item_links_container{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.footer_item_link{
    color: #545768;
    display: flex;
    width: 50%;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-size: 14px;
    padding: 13px 0px;
}

.footer_item_link:hover{
    text-decoration: underline;
}


.footer_copyright{
    text-align:  center;
}
.footer_copyright_txt{
    padding: 20px;
    background-color: #fff;
    color: #000;
    letter-spacing: 0.5px;
    font-size: 15px;
}





.input_fields_keeper_member_l{
    width: 100%;
    position: relative;
    z-index: 0;
}


.input_items_member_l{
    padding: 8px 10px;
    width: 100%;
    font-size: 14px;
    color: #fff;
    border: 1px solid #4d526b;
    border: 1px solid #adafb9;
    border-radius: 2px;
    background-color: transparent;
}


.warning_message_member_l{
    font-size: 10px;
    display: flex;
    color: #b22222;
    align-items: center;
    margin-bottom: 12px;
    padding: 5px 0;
}



.input_labels_member_l{
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 10px;
    width: auto;
    transform: translateY(-50%);
    color: #808080;
    font-size: 12px;
    padding: 0 5px;
    transition: all 0.2s ease;
    border-radius: 3px;
}

#edit_email_field_member{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    text-align: right;
    z-index: 2;
}

#edit_email_field_member button:hover{
    font-size: 23px;
}

#edit_email_field_member button{
    height: 100%;
    width: 40px;
    font-size: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: none;
    background-color: transparent;
    border-left: 1px solid #4d526b;
    transition: font-size 0.2s ease;
}

#edit_email_field_member i{
    color: #373d58;
}


.input_fields_keeper_member_l .input_items_member_l:focus ~ .input_labels_member_l,
.input_fields_keeper_member_l .input_items_member_l:valid ~ .input_labels_member_l{
    z-index: 1;
    top: 0;
    font-size: 10px;
    color: #686d82;
    background-color: #fefeff;
    border-radius: 3px;
}

#input_field_phone_number_container{
    display: flex;
}

#input_field_phone_number_container select, #input_field_phone_number_container input{
    height: 39px;
}

#country_code_chooser{
    width: 70px;
}

#phone_number_inp_container{
    width: calc(100% - 70px);
    margin-left: 5px;
}












/* Landing Page Onchers */

.landing_page_main_container{
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.landing_page_header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	height: 100px;
}

.landing_page_main_body{
	background-color: rgba( 28, 49, 96, 1);
	position: absolute;
	top: 100px;
	height: calc(100% - 100px);
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: #FFFFFF;
	padding: 20px 90px;
}

.landing_page_header img{
	height: 100%;
}



.sign_in_sign_up_onchers_landing_btn{
	border: none;
	background-color: #0081de;
	width: 200px;
	height: 40px;
	font-size: 18px;
	border-radius: 10px;
	color: #55595e;
    color: #fff;
	box-shadow: 1px 2px 8px 0 rgba(32, 32, 32, 0.2);
	cursor: pointer;
	
}

.sign_in_sign_up_onchers_landing_btn:hover{
	box-shadow: 1px 2px 8px 0 rgba(32, 32, 32, 0.7);
	color: #000000;
    color: #eee;
	
}



.landing_page_main_body_h2{
	font-size: 60px;
	font-weight: 500;
}
.landing_page_main_body_desc{
	font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
	margin: 20px 0;
	
}


.landing_page_body_iamge_container{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: calc(100% - 100px);
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	
}

.landing_page_main_inside{
	z-index: 1;
	text-shadow: 1px 1px black;
}


.ladning_page_main_image{
	height: 100%;
}




.warning_modal{
	padding: 20px;
	margin: 20px;
	border: 1px solid rgba(255, 0, 0, 0.8);
	background-color: rgba( 255, 0, 0, 0.1);
	border-radius: 10px;
}


.success_modal{
	padding: 20px;
	margin: 20px;
	border: 1px solid rgba(0, 255, 0, 0.8);
	background-color: rgba( 0, 255, 0, 0.1);
	border-radius: 10px;
}

.cv_not_found_container{
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.cv_heading{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cv_description{
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 20px;
}



.blog_container{
    padding: 20px;
    margin-top: 40px;
    color: #000;
    display: block;
}

.blog_header{
    font-weight: 500;
}

.blog_description{
    font-size: 17px;
    letter-spacing: 0.5px;
    
}

.menu_item_userpage{
    display: none;
}

.menu_items_keepers{
    display: none;
}

.menu_items_keepers_show{
    display: block;
}
.blog_container_item_keeper{
    width: 33.33%;
    padding: 20px;
}
.blog_container_item{
    /* border: 1px solid #c1c1c1; */
    box-shadow: 2px 2px 1px 0px #c1c1c1;
    box-shadow: 2px 1px 1px 2px #d6d6d6;
    background-color: #ffffff;
    border-radius: 9px;
    margin: 30px 0;
    color: #242234;
    overflow: hidden;
    transition: all 0.4s;
    width: 100%;
}

.blog_container_item:hover{
    background-color: #f5f5f5;
    box-shadow: 5px 3px 6px 2px #d6d6d6;
}

.blog_container_i_left{
    width: 100%;
    height: 190px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all 0.4s;
}

.blog_container_item:hover .blog_container_i_left{
    background-size: 110%;
}

.blog_container_i_right{
    padding: 10px;
}

.blog_container_img{
    width: 100%;
}

.blog_container_heading{
    margin-top: 20px;
    min-height: 87px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog_container_date{
    line-height: 1.45;
    color: #2235dd;
    font-weight: 600;
    font-size: 0.8125rem;
    word-wrap: break-word;
    margin-top: 10px;
}
.blog_container_p{
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.13rem;
    font-weight: 300;
    font-style: normal;
    margin-top: 16px;
    height: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 23px;
}

.blog_container_p *{
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.13rem;
    font-weight: 300;
    font-style: normal;

}

.home_container{
    background-image: url('../assets/home_container_background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.home_container_header{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 1100px;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    right: 0;
}

.buttonLogin{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 10px 30px;
    line-height: 1.1;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: all .3s;
    background: #03a9f4;
    color: #fff;
    border: 1px solid #ffffff7a;
    box-shadow: 1px 1px 5px #9f9f9f;
}

.buttonLogin:hover{
    box-shadow: 1px 3px 10px 3px #ffffff;
}

.home_container_body {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-bottom: 150px;
    padding-top: 50px;
}

.home_container_logo{
    width: 100%;
    max-width: 280px;
}

.home_header_heading1{
    font-weight: 600;
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
}


.home_header_heading2{
    font-weight: 300;
    font-size: 26px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}
.home_header_heading2 span{
    white-space: nowrap;
}

.home_header_heading3{
    font-weight: 300;
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}


.home_header_form_container{
    display: flex;
    width: 100%;
    margin-top: 40px;
    background-color: #ffffff87;
    padding: 14px;
    border-radius: 8px;
}

.home_form_input{
    height: 40px;
    margin-right: 10px;
    padding: 0 10px;
    font-weight: 300;
    border: none;
    border-radius: 4px;
    letter-spacing: 0.4px;
    font-size: 15px;
    border: 4px solid transparent;
    transition: all 0.3s;
}

.home_form_input:focus{
    border: 4px solid #c1c1c1;
}

.home_form_input_btn{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-weight: 500;
    border-radius: 4px;
    background-color: #8BC34A;
    color: #fff;
    font-size: 18px;
    border: 1px solid #ffffff7a;
    box-shadow: 1px 1px 5px #9f9f9f;
    min-width: 240px;
    transition: all 0.3s;
}

.home_form_input_btn:hover{
    box-shadow: 1px 1px 5px #ffffff;
}


.home_header_agreement_container{
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.home_header_agreement_text{
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.1px;
}

.home_header_agreement_text a{
    color: var(--iris_blue);
    color: #FFEB3B;
    text-decoration: underline;
}

.home_header_agreement_input{
    margin-right: 7px;
}

.warning_textbox{
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1px;
    color: red;
}

.home_container_inside {
    position: relative;
}
.extra_height{
    min-height: 2000px;
}


.homepage_footer{
    background-color: #24282c;
    color: #fff;
}
.homepage_footer_inside{
    padding: 20px;
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
}

.footer_item_home{
    width: 30%;
    padding-right: 30px;
}
.footer_item_first{
    width: 40%;
}

.footer_item_heading{
    padding-bottom: 20px;
    font-weight: 600;
}

.footer_item_subitem{
    margin-bottom: 14px;
    color: #ffffff;
    display: block;
    font-weight: 300;
    font-size: 14px;
    text-align: justify;
}
.footer_item_subitem_email{
    white-space: nowrap;
}
.footer_item_subitem_address{
    text-align: left;
}
.footer_item_subitem_a{
    transition: all 0.2s;
}
.footer_item_subitem_a:hover{
    text-decoration: underline;
    color: var(--iris_blue);
    color: #FFEB3B;
}

.ab_common_form_keeper{
    padding: 0 20px;
}

.ab_common_form{
    margin: 20px auto;
    border: 1px dashed #c1c1c1;
    border-radius: 9px;
    max-width: 800px;
    background-color: #f0f8ff;
    padding: 20px;
}

.edit_profile_top_heading{
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit_profile_top_heading_inside{

}
.all_r_task_header{
    text-align: center;
}

.blog_items_keepers{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1500px;

}

.blog_item_anchor{
    display: inline-block;
    transition: all .2s linear;
    color: #2235dd !important;
    padding: 10px 0;
    margin-bottom: 10px;
}

.single_blog_container{
    background-color: aliceblue;
    padding: 15px;
    margin-top: 60px;
    color: #242234;

}

.single_blog_container_inside{
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px dashed #c1c1c1;
    border-radius: 6px;
    background-color: #fff;
}

.single_blog_img{
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
}

.blog_container_description{
    margin: 30px 0;
    margin-bottom: 50px;
}
.admin_form_item_container_selector{
    display: flex;
    align-items: center;
}

.admin_form_item_container_selector label{
    margin-left: 4px;
    margin-right: 20px;
}

@media only screen and (max-width: 900px) {
    .home_header_form_container { flex-direction: column; }
    .home_form_input { margin-bottom: 10px; margin-right: 0;}
    .blog_container_item_keeper{ width: 50%; }
}
@media only screen and (max-width: 800px) {
    .homepage_footer_inside{ flex-wrap: wrap;}
    .footer_item_home{ width: 50%; }
    .footer_item_first{ width: 100%;}

}
@media only screen and (max-width: 750px) {
    .ladning_page_main_image { height: 90%; }
    .landing_page_main_body_h2 { font-size: 48px; }
    .landing_page_main_body_desc { font-size: 16px; font-weight: 400; }
    .sign_in_sign_up_onchers_landing_btn { width: 120px; }

}

@media only screen and (max-width: 650px) {
    .landing_page_header img {
        height: auto;
        max-width: 164px;
        padding-right: 10px;
    }

    .footer_item{
        width: 100%;
    }
    
    .footer_item_extended{
        width: 100%;
    }

    .menu_item{ display: none; }
    .menu_item_userpage{ 
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }


    .overview_profile_name{
        font-size: 2rem;
        font-weight: 500;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .blog_container_item{ flex-direction: column; }
    .blog_container_i_left{ display: flex; align-items: center; justify-content: center; max-width: 100%;}
    .blog_container_img{
        max-width: 150px;
        margin-top: 20px;
        
    }

    .blog_container_item_keeper{ width: 100%; }
}


@media only screen and (max-width: 480px) {
   .landing_page_main_body_h2 { font-size: 24px }
   .ladning_page_main_image { height: 50%; }
   .landing_page_main_body { justify-content: flex-start; padding: 20px 20px; }

   .home_container_body { padding-top: 30px; }
   .home_header_heading1 { font-size: 23px; margin-top: 25px; margin-bottom: 14px; }
   .home_header_heading2 { font-size: 20px; margin-top: 5px; }
   .home_header_heading3 { font-size: 20px; margin-top: 6px; margin-bottom: 0px; }
   .footer_item_home{ width: 100%; }

}



