@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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 */
html {
    scroll-behavior: smooth;
}

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


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


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);
}



/* Hme Page CSS */
.hero_section{
    width: 100%;
    background-color: var(--white);
    background: radial-gradient(47.74% 154.3% at 50% 49.94%, #51392E 0%, #000000 100%);


}
.hero_navbar{
    border-bottom: 2px solid #a9a9a9b0;
    width: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero_navbar_inside{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;   
    width: 100%;
    max-width: 1200px; 
    padding: 15px 0px;
    margin: auto;
    height: 73px;
}
.hero_navbar_mobile_view {
    position: fixed;
    width: 100%;
    height: calc(100% - 73px);
    height: 0;
    top: 73px;
    color: #08080a;
    left: 0;
    background-color: #ffffffeb;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: height 0.45s ease, opacity 0.3s ease;
}

.hero_menu_expander i{
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.hero_menu_expander.active i{
    transform: rotate(90deg);
}

.hero_navbar_mobile_view.active{
    height: calc(100% - 73px);
    opacity: 1;
}

.hero_navbar_item{
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: left;
}
.movile_nav_item{
    display: block;
    padding: 25px 25px;
    color: #23242b;
    border-bottom: 1px solid #d4d4d4;
    position: relative;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    transition: all 0.3s;
    overflow: hidden;
    z-index: 0;
}

.movile_nav_item::after{
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #ffffffba;
    left: 0;
    top: 0;
    transition: all 0.5s;
    opacity: 0;
    z-index: -1;
}
.movile_nav_item:hover{
    color: #000000;
}
.movile_nav_item:hover::after{
    width: 100%;
    opacity: 1;
}

.hero_navbar_item_center{
    justify-content: center;
}

.hero_navbar_item_right{
    justify-content: right;
}
.hero_nav_anchor{
    color: #e6e6e6;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    padding: 20px 15px 10px;
    margin: 0 15px 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    white-space: nowrap;
}

.hero_nav_anchor:hover{
    color: #FFFFFF;
}

.hero_nav_anchor::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background-color: rgb(129, 129, 129);
    transition: width 0.3s ease-in-out;
}

.hero_nav_anchor:hover::after{
    width: 100%;
}


.hero_nav_anchor:first-child{
    margin-left: 0px;
}

.hero_nav_anchor:last-child{
    margin-right: 0px;
}
.hero_logo{
    width: 164px;
}

.hero_content{
    padding: 250px 20px;
    background-image: url('../assets/hero_image.PNG');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: relative;
}

.hero_content_inside{
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    color: var(--white);
    
}

.hero_content_heading{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100%;
    max-width: 370px;
}

.hero_content_brief{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 20px 0px;
}

.hero_content_btn{
    display: inline-flex;
    width: 175px;
    height: 55px;
    padding: 8px 19px 12px 13px;
    flex-direction: row;
    color: #FFFFFF;
    align-items: center;
    gap: 10px;
    border-radius: 36px;
    background: linear-gradient(92deg, #CC5D23 1.41%, #662F12 99.62%);
    border: none;
    transition: background 0.5s ease, transform 0.2s ease, box-shadow 0.3s ease-in-out;
}

.hero_content_btn_img_keeper{
    display: flex;
    width: 36px;
    height: 36px;
    padding: 15px 13px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 26px;
    background: #FFF;
    position: relative;
}
.hero_content_btn_img{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
}
.hero_content_btn_text{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-wrap: nowrap;
}

.hero_content_btn:hover{
    box-shadow: 0px 4px 15px rgba(204, 93, 35, 0.4);
    background: radial-gradient(
    circle at center,
    #E06F32 0%,
    #CC5D23 45%,
    #662F12 100%
  );
  transform: translateY(-2px);
}

.heroo_content_bottom{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.heroo_content_bottom_header{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 100px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}


.content_section{
    width: 100%;
    padding: 100px 20px;
    background: #0F0E0E;
}

.content_section_inside{
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    gap: 50px;
}

.content_section_top_heading{
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 2.9rem;
}

.content_section_top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 670px;
}


.content_section_top_description {
    padding-top: 40px;
    padding-top: 40px;
    line-height: 1.5rem;
    letter-spacing: 0.5px;
    font-weight: 300;
}


.content_section_middle{
    padding: 0 50px;
    margin-top: 50px;
}
.content_section_middle_inside{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contect_section_item_box{
    width: 207px;
    height: 207px;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contect_section_item_box_inside{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.content_section_item_img{
    width: 100%;
    max-width: 40px;
}
.content_section_item_heading{
    color: #FFF;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 10px 0px;
}
.content_section_item_description{
    color: #FFF7F7;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.content_section_bottom_heading{
    max-width: 500px;
    margin-top: 50px;
}


.slider_one_item{
    width: 100%;
    padding: 190px 0px;
    color: #FFF;
    text-align: center;
     background-image:
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
        url('../assets/background_slider_1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.slider_one_item_content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.slider_one_item_content_left{
    text-align: left;
}

.slider_one_name{
    color: #FFF7F7;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.slider_one_job{
    color: #FFF7F7;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 8px;
    padding-bottom: 20px;
}

.slider_one_brief{
    color: #FFF7F7;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 2px;
    line-height: 1.3rem;
}

.slider_one_item_content_left{
    padding: 20px;
    box-sizing: border-box;
}

.slider_one_item_img{
    width: 100%;
    min-width: 350px;
    border-radius: 4px;
}
.slider_one_item_buttton {
    background-color: #f2f2f2;
    border: none;
    border-radius: 8px;
    margin: 20px 0;
    padding: 10px 32px;
    font-size: 15px;
    transition: all 0.3s;
}
.slider_one_item_buttton:hover {
    background-color: #fff;
    box-shadow: 5px 3px 12px 2px rgb(16 18 45 / 87%);
}
.slider_one_section {
    position: relative; /* parent relative for absolute dots */
}

.slider_one_section .owl-dots {
    position: absolute;
    bottom: 160px;      
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;         
    z-index: 10;
}

.slider_one_section .owl-dots .owl-dot span {
    width: 20px !important;      /* bigger dot */
    height: 20px !important;     /* bigger dot */
    background: transparent !important;
    border: 2px solid #ffffff !important; /* white border for inactive */
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.slider_one_section .owl-dots .owl-dot.active span {
    background: #ffffff !important; /* fully filled white */
    border: 2px solid #ffffff !important; /* white border stays */
    opacity: 1;
}
.faq_section{
    padding: 120px 20px;
    background-color: #F3EAEA;
}
.faq_section_inside{
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.faq_section_heading{
    padding: 40px 0px;
    padding-top: 20px;
    color: #35332F;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 72px */
    text-transform: capitalize;
}

.faq_item_keeper{
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap

}
.faq_item_keeper .faq_section_qa_box{
    padding: 20px;
    min-height: 79px;
}

.faq_item_keeper_item{
    width: 50%;
    display: flex;
    padding: 0 20px;
    align-items: center;
    cursor: pointer;
    flex-wrap: wrap;
}

.faq_item_keeper_item_inside{
    width: 100%;
    margin: 20px;
    background: #FFF;
    box-shadow: 0 24.556px 32.742px -14.734px rgba(149, 149, 149, 0.25);
    border-radius: 4.911px;
    transition: all 0.3s;
}
.faq_section_qa_box{
    display: flex;
    align-items: center;
}



.faq_section_qa_box_icon{
    height: 23px;
    width: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}


.faq_item_keeper_item_inside:hover{
    box-shadow: 5px 8px 11px 2px rgba(149, 149, 149, 0.35);
}


.faq_section_qa_box_inside{
}
.faq_section_question{
    color: #1B1139;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
}
    
.faq_section_answer{
   color: #363049;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150.7%; /* 21.098px */
    letter-spacing: 0.1px;
    padding-top: 20px;
    padding-bottom: 25px;
}

.faq_section_answer{
    width: 100%;
}
.faq_section_answer_box{
    padding-left: 60px;
    padding-right: 20px;
}
.faq_item_keeper_item {
    cursor: pointer;
}

.faq_section_answer_box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.faq_item_keeper_item.active .faq_section_answer_box {
    max-height: 300px; /* enough to fit content */
    opacity: 1;
    transform: translateY(0);
}

/* optional: rotate icon */
.faq_item_keeper_item.active .faq_section_qa_box_icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}


.content_trust_section{
    padding: 80px 60px;
    background-color: #000;
    color: #fff;
    text-align: left;
}

.content_trust_section_inside{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.content_trust_section_header{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.48px;
}

.content_trust_section_description{
    margin-top: 20px;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.16px;
    max-width: 600px;
}


.slider_two_item{
    background: #292928;;
}

.slider_one_item_inside{
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.slider_two_item_inside{
    width: auto;
}
.slider_two_item_content{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 600px;
}

.slider_two_item_content_left, .slider_two_item_content_right{
    width: 50%;
}
.slider_two_item_content_left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 60px;
    box-sizing: border-box;
    
}
.slider_two_item_content_right{
    display: flex;
    flex-direction: column;
}



    
.slider_two_brief{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: -80px;
}
.slider_two_name{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 55px;
}
.slider_two_job{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}



.slider_two_section .owl-dots {
    position: absolute;
    bottom: 60px;      
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;         
    z-index: 10;
}

.ready_section{
    width: 100%;
    padding: 165px 20px;
    background-color: #0F0E0E;
    position: relative;
}

.ready_section_inside{
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row; 
    align-items: center;
    color: #fff;
    border-radius: 14px;
    background: #262323;
    gap: 20px;
}

.ready_section_left, .ready_section_right{
    width: 50%;
}
.ready_section_left{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.ready_section_left_one{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-direction: column;
}

.ready_section_img:nth-child(1){
    padding-bottom: 20px;
}

.ready_section_right{
    text-align: center;
}

.ready_section_right_inside{
    display: inline-block;
    text-align: right;
}

.ready_section_heading{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
}
.heard_join{
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 80px 20px;
}
.heard_join_left{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 50%;
}
.heard_join_left h3{
    color: #000;
    font-family:'Roboto', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.heard_join_left h1{
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.heard_join_right{
    padding-right: 110px;
    width: 50%;
    text-align: right;
}


.footer{
    width: 100%;
    padding: 60px 20px;
    background-color: #181818;
    color: #fff;
}

.footer_inside{
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer_left{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: left;
}
.footer_left_heading{
   color: #FFF;
font-family: 'Roboto', sans-serif;
font-size: 41px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.footer_middle{
    width: 30%;
}
.footer_right{
    width: 30%;
}

.footer_middle a{
    display: block;
}

.f_contact_info{
    padding: 5px 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
    padding-bottom: 25px;
}

.f_contact_meil, .f_contact_phone, .f_contact_address{
    padding: 5px 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
}


.f_see_on_map{
    padding: 5px 0px;
    padding-top: 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF; 
    text-decoration: underline;   
}

.footer_right h2{
    color: #FFF;
    font-family:'Roboto', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding:15px 0;
}
.footer_right_su{
    display: inline-block;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px !important;
    margin-bottom: 15px;
}

.follow_anchors{
    display: flex;
    align-items: center;
    justify-content: left;

}

.follow_anchors a{
    display: flex;
    align-items: center;
    justify-content: left;
    width: 30px;
    height: 30px;
    padding-right: 40px;
}

.hero_menu_expander{
    padding: 10px 15px;
    margin-right: 20px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.4s;
    display: none;
}

.hero_menu_expander:hover{
    background-color: #5f5e5ea8;
}


.hero_button_keeper_mobile {
    text-align: center;
    background-color: #4953aa38;
    padding: 10px;
    display: none;
}





/* Webmenou Profile Skeleton */
.profile_body{
    background: #050505;
}

.profile_header{
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(5, 5, 5, 0.54);
    backdrop-filter: blur(50px);
}
.profile_header_inside{
    text-align: center;
    border-bottom: 1px solid #958F8F;;
}
.profile_header_item{
    display: inline-block;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 20px 10px;
    margin: 10px 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}


.profile_header_item::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background-color: rgb(223, 223, 223);
    transition: width 0.3s ease-in-out;
}

.profile_header_item:hover::after{
    width: 100%;
}


.profile_hero_section{
    width: 100%;
    padding: 30px 10px;
}
.profile_hero_section_inside{
    max-width: 1200px;
    width: 100%;
    margin: auto;
    border-radius: 14px;
    background: #242222;
    backdrop-filter: blur(10px);
    padding: 10px 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.profile_hero_section_left{}
.profile_left_top{}
.profile_left_top h2{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.profile_left_top p{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.5px;
}
.profile_left_middle{
    padding: 40px 0;
    padding-right: 30px;
}
.profile_left_middle p{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.profile_left_bottom{
    display: flex;
    align-items: center;
}
.profile_social_anchor{
    width: 60px;
    height: 40px;
    border-radius: 8px;
    background: #D9D9D9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 10px;
    box-shadow: 2px 2px 5px 1px #08080a;
    transition: all 0.2s;
}

.profile_social_anchor:hover{
    box-shadow: 6px 6px 8px 3px #101014;
    background: #FFFFFF;
}
.profile_social_anchor img{
    /* filter: brightness(0) invert(1); */
}

.profile_hero_section_right{}
.profile_hero_section_img_keeper{
    width: 445px;
    height: 509px;
    border-radius: 14px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile_portfolio_section{
    width: 100%;
}
.profile_portfolio_section_inside{
    max-width: 1200px;
    margin: auto;
    padding-top: 80px;
    color: #FFF;
}
.profile_portfolio_text{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}
.profile_portfolio_keepers{
    padding: 30px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.profile_portfolio_item{
    padding: 10px;
    display: inline-block;
    text-align: left;
    margin-bottom: 30px;
}
.profile_portfolio_item_inside{
    max-width: 359px;
    width: 100%;
    height: 426px;
    border-radius: 16px;
    background: #242222;
    padding: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.blog_item_inside{
    max-width: 366px;
    height: 398px;
}

.profile_portfolio_item_inside:hover{
    box-shadow: 4px 3px 11px 3px #80808073;
}
.profile_portfolio_item_image_keeper{
    text-align: center;
}
.profile_portfolio_item_image{
    display: inline-block;
    width: 320px;
    height: 266px;
    border-radius: 14px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog_item_img{
    width: 335px;
    height: 204px;
    border-radius: 12px;
}
.profile_portfolio_item_heading{
    margin-top: 15px;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog_heading{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.profile_portfolio_item_brief{
    margin-top: 15px;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog_brief{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog_item_btn_keeper{
    text-align: right;
    margin-top: 10px;
}
.blog_item_btn{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border-radius: 8px;
    background: #383636;
    border: none;
    display: inline-flex;
    padding: 7px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.profile_portfolio_item_inside:hover .blog_item_btn{
    background: #615c5c;
}
.blog_item_btn:hover{
    background: #615c5c;
}

.project_add_container{
    display: flex;
    width: 320px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.project_add_plus{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.project_add_txt{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cv_attachment_img{
    width: 36px;
    height: 36px;
    margin-bottom: 50px;
}

.profile_footer{
    width: 100%;
    padding: 40px 0;
    margin-bottom: 80px;
}
.profile_footer_inside{
    max-width: 1200px;
    width: 100%;
    margin: auto;
    border-radius: 16px;
    background: #242222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 45px 30px;
}
.profile_footer_left{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.profile_footer_middle{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.profile_footer_right{}
.profile_footer_heading{
    color: #FFF;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 2px;
    border-bottom: 1px solid #F77D3D;
    margin-bottom: 27px;
}
.profile_footer_subheading{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 5px 0;
}
.profile_footer_text{
    color: #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 5px 0;
}
.profile_footer_connect_anchor{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px 0;
}

.profile_footer_connect_anchor:hover{
    text-decoration: underline;
}
.profile_footeere_leave_msgs_txt{
    color: #FFF;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.contact_form_item{
    margin-top: 13px;
    display: flex;
    flex-direction: column;
}
.contact_form_item_label{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 5px;
}
.contact_form_item_input{
    border: none;
    border-radius: 6px;
    background: #323030;
    display: flex;
    min-height: 47px;
    padding: 12px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #ffffff;
    font-size: 13px;
}

.contact_form_item_input:focus{
    outline: 2px solid #00bcd4;
}
.contact_form_item_input::placeholder{
    color: #D4C8C8;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.contact_form_item_input_textarea{
    min-height: 80px;
    resize: vertical;
}
.contact_form_button_keeper{
    margin-top: 20px;
}
.contact_form_button{
    display: inline-flex;
    padding: 10px 26px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #EFEBEA;
    text-align: center;
    color: #000;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    transition: 0.4s;
}

.contact_form_button:hover{
    background-color: #ffffff;
    box-shadow: 4px 3px 8px 0px #848484;
}















/* Login Page */
.login_page_body{
    background: linear-gradient(298deg, #2B2727 0.82%, #000 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_page{
    width: 100%;
}
.login_page_inside{
    max-width: 1200px;
    width: 100%;
    padding: 50px;
    margin: auto;
}

.login_page_heading{
    margin-bottom: 60px;
}
.login_page_heading_text{
    color: #2E2D2D;
    font-family: "Lato", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.login_page_container{}
.login_page_container_inside{
    color: #FFFFFF;
    display: flex;
    justify-content: center;
}

.login_page_container_left{
    width: 50%;
    border-radius: 24px 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        linear-gradient(
            0deg,
            rgba(211, 211, 211, 0.55),
            rgba(211, 211, 211, 0.55)
        ),
        url('../assets/login_background.jpg');

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    
}

.reg_page_container_left{
    background-image:
        linear-gradient(
            0deg,
            rgba(211, 211, 211, 0.55),
            rgba(211, 211, 211, 0.55)
        ),
        url('../assets/reg_background.jpg');
}
.login_page_container_left_inside{
    padding: 133px 103px;
    background-color: hsl(0deg 0% 0% / 73%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login_welcome_back{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-align: center;
}
.login_welcome_brief{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
}
.login_welcome_description{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.login_page_container_right{
    width: 50%;
    border-radius: 0 24px 24px 0;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(314deg, rgba(0, 0, 0, 0.00) 0%, #322D2D 99.09%), #0A0A0B;

}
.login_page_container_right_inside{
    max-width: 300px;
    width: 100%;
}

.login_sign_in_text{
    color: #FFF;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 40px;
}

.login_input_container{
    display: flex;
    flex-direction: column;
}
.login_input_label{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 7px;
    margin-bottom: 7px;
}
.login_input{
    padding: 13px;
    height: 45px;
    border-radius: 6px;
    border: 1px solid #474747;
    background: #111113;
    color: #ffffff;
    transition: all 0.2s;
}
.login_input::placeholder{
    color: #D4C8C8;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
}
.login_input:focus{
    outline: 2px solid #00bcd4;
}

.login_input_container_last{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}
.login_input_container_last_left{
    display: flex;
    align-items: center;
}
.login_input_container_last_checkboox{
    margin-right: 5px;
}
.login_input_container_last_label{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.login_input_container_last_right{}
.forget_password_anchor{
    color: #4F46E5;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login_button_keeper{
    margin-top: 30px;
    text-align: center;
}
.login_button{
    border: none;
    display: inline-flex;
    padding: 10px 60px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #4F46E5;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.login_secion_last{
    margin-top: 30px;
    text-align: center;
}
.dont_have_account_text{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.dont_have_account_text_anchor{
    margin-left: 15px;
    color: #4F46E5;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}










/* Home Edit Styles */
.home_main_container{
    background: linear-gradient(304deg, #000 -2.13%, #312E2E 100.64%);
}
.home_main_container_inside{
    padding: 10px 50px;
    padding-bottom: 80px;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.home_logo_keeper{
    padding-bottom: 30px;
    position: relative;
}
.home_logout_btn, .home_logout_btn_mobile{
    position: absolute;
    top: 20px;
    right: 4px;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    box-shadow: 2px 2px 2px 1px #8282828a;
    cursor: pointer;
    transition: all 0.3s;
}
.home_logout_btn{
    padding: 8px 20px;
    background-color: #ffffffd9;
    color: #23242a;
    border-radius: 28px;
}

.home_logout_btn:hover{
    background-color: #ffffff;
}
.home_logout_btn_mobile{
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 15px;
    display: none;
}
.home_logout_btn_mobile img{
    width: 25px;
    height: 25px;
}

.home_logo_img{
    max-width: 180px;
    width: 100%;
    padding: 20px 0;
}

.edit_your_portfolio_txt{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 13px;
}

.home_main_edit_container{
    border-radius: 24px;
    border: 1px solid #706666;
    background: linear-gradient(304deg, #000 -2.13%, #312E2E 100.64%);
    box-shadow: -4px -4px 14px 0 rgba(253, 123, 56, 0.10), 4px 4px 12px 0 rgba(253, 123, 56, 0.10);
}

.home_main_edit_navbar_container{
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}
.home_main_edit_navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 5px;
    background: #2F2F2F;
}
.home_main_navitem{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #635D5D;;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 19px 35px;
    border-radius: 11px;
    margin-right: 5px;
    transition: all 0.2s;
}
.home_main_navitem:last-child{
    margin-right: 0;
}
.home_main_navitem_img{
    padding-right: 5px;
    transition: all 0.3s;
}

.home_main_navitem_active, .home_main_navitem:hover{
    color: #fff;
    background-color: #272727;
}

.home_main_navitem_active .home_main_navitem_img, .home_main_navitem:hover .home_main_navitem_img{
    filter: invert(1);
}

.home_profile_form_container{
    
}
.home_profile_form_container_inside{}

.home_profile_form_top{
    display: flex;
    padding: 0 60px;
    padding-bottom: 40px;
}
.home_profile_project{
    display: block;
}
.your_project_txt{
    text-align: center;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
}

.home_profile_form_left{
    flex: none;
}
.home_profile_image_keeper_container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.home_profile_picture_keeper{
    position: relative;
    border-radius: 6px;
    border: 1px solid #474747;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home_profile_picture_keeper:hover{
    box-shadow: 1px 2px 2px 0 #3a3a3a;
}
#home_profile_picture_form{
    width: 100%;
    max-width: 174px;
}
.image_input_label_img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.img_upload_txt{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 5px;
}

.home_profile_form_right{
    padding-left: 50px;
    width: 100%;
}
.home_profile_form_right_inside{
}

.two_input_keeper{
    display: flex;
}
.two_input_keeper>div{
    padding-right: 20px;
    width: 100%;
}
.two_input_keeper>div:last-child{
    padding-right: 0;
}
.three_input_keeper{
    display: flex;
}
.three_input_keeper>div{
    padding-right: 20px;
    width: 100%;
}
.three_input_keeper>div:last-child{
    padding-right: 0;
}

.home_profile_input_item{
    display: flex;
    flex-direction: column;
}
.home_profile_input_label{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}
.home_profile_input_field{
    border-radius: 6px;
    border: 1px solid #474747;
    background: #111113;
    height: 55px;
    padding: 13px 43px;
    margin-bottom: 20px;
    padding: 13px 14px;
    color: #fff;
    transition: all 0.2s;
}
.home_profile_input_field:hover{
    box-shadow: 1px 1px 2px #353535;
}
.home_profile_input_field:focus{
    outline: 2px solid #00bcd4;
}
.home_profile_input_field::placeholder{
    text-align: center;
    color: #A29797;
    font-family: "Lato", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.home_profile_input_field_textarea{
    resize: vertical;
    min-height: 125px;
}

.home_profile_button_keeper{
    text-align: right;
}
.home_profile_button{
    border: none;
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #3755D1;
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.5s;
}
.home_profile_button:hover{
    background: #2444cb;
    box-shadow: 1px 1px 4px 0px #817d7d;
}
.home_profile_form_bottom{
    padding: 50px 0;
    border-top: 1px solid #6A6161;;
}
.home_profile_form_bottom_inside{
    display: flex;
    align-items: center;
    justify-content: center;
}
.home_profile_userlink{
    padding: 12px 50px;
    border-radius: 12px;
    border: 1px solid #666;
    background: #201D1D;
    color: #A29797;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-right: 15px;
}
.hoome_profile_short_btn{
    background-color: transparent;
    border: none;
    padding: 0 5px;
    margin-right: 10px;

    
}


.home_cv_middle{
    border-top: 1px solid #6A6161;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.home_cv_middle h2{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.home_cv_middle a{
    margin-left: 20px;
}

.about_us_section{
    
}

.about_us_text{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 60px 0;
    text-align: center;
}
.about_us_container{
    padding: 0 20px;
}
.about_us_container_inside{
    max-width: 1055px;
    width: 100%;
    border-radius: 14px;
    background: #181818;
    padding: 117px 53px;
    margin: auto;
    margin-bottom: 150px;
}

.about_us_description{
    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}


.user_blog_form_top{
    margin: 0;
    padding: 0 60px;
    padding-bottom: 40px;
}

.delete_portfolio_section{

}



.delete_portfolio_section .blog_item_btn {
    background: #E91E63;
    font-weight: 500;
    width: 100%;
}

.delete_portfolio_section .profile_portfolio_item_inside:hover{
    box-shadow: 4px 3px 11px 3px #e91e6361;
}

.delete_portfolio_section .blog_item_btn:hover{
    background: #C2185B;
}
.delete_portfolio_section .profile_portfolio_item_inside:hover .blog_item_btn {
    background: #C2185B;
}

.user_projects_keeper{
    flex-direction: column-reverse;
}
.user_home_projects_keeper .profile_portfolio_item_inside{
    position: relative;
}

.user_home_projects_keeper .profile_portfolio_item_inside:hover{
    box-shadow: none;
}

.project_delete_button{
    position: absolute;
    top: 6px;
    right: 5px;
    display: flex;
    width: 59px;
    height: 59px;
    justify-content: center;
    align-items: center;
    gap: 10px;    
    background: rgb(37 35 35 / 80%);
    border-radius: 50%;
    transition: all 0.3s;
}

.user_home_projects_keeper .user_home_projects_keeper{
    cursor: default;
}
.user_home_projects_keeper .user_home_projects_keeper:hover{
    box-shadow: none;
}

.user_home_projects_keeper .project_delete_button:hover{
    background: rgb(194 24 91 / 80%);
}

.user_project_new_type_input{
    display: flex;
}

.user_home_projects_keeper .profile_portfolio_item_image_keeper{
    position: relative;
}

.user_project_new_type_input select{
    height: 55px;
    padding: 0 10px;
    background-color: #111113;
    border: none;
    border-radius: 10px 0 0 10px;
    color: #fff;
    border: 1px solid #474747;
    border-right: none;
    transition: all 0.3s;
}
.user_project_new_type_input select:hover{
    outline: 2px solid #00bcd4;
}

.user_project_new_type_input .home_profile_input_field{
    width: 100%;
    border-left: none;
    border-radius: 0 6px 6px 0;
}

.user_project_pdf_upload_container{
    display: flex;
    align-items: center;
    width: 100%;
}

.user_project_pdf_upload_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    width: 100%;

    color: #FFF;
    font-family: "Lato", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    
    border: 1px solid #474747;
    background: #111113;
    transition: all 0.2s;


    border-left: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;

}

.user_project_pdf_upload_btn:hover{
    outline: 2px solid #00bcd4;
}

.user_project_pdf_upload_btn .cv_attachment_img{
    margin: 0;
    margin-right: 20px;
    width: 22px;
    height: 22px;
}

#user_project_url_container {
    width: 100%;
}

.blog_item_img_keeper{
    position: relative;
}

.blog_item_date_keeper{
    color: #000000;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid #474747;
    position: absolute;
    top: 4px;
    right: 4px;
    border-radius: 8px;
    background-color: #ffffffd1;
    padding: 3px 8px;
    box-shadow: 3px 4px 8px 2px #2e2e2ed6;
}

.single_blog_container{
    width: 100%;
}
.single_blog_container .blog_item_inside{
    max-width: 1200px;
    width: 100%;
    height: auto;
}
.single_blog_container .blog_item_img{
    width: 100%;
    height: 445px;
    border-radius: 12px;
}
.single_blog_container .blog_heading {
    font-size: 30px;
    padding-left: 20px;
    padding-right: 20px;
}
.single_blog_container .blog_brief{
    padding: 20px;

    display: block;
    -webkit-line-clamp:initial;
    -webkit-box-orient:initial;
    overflow: auto;
}

.single_blog_container .blog_brief a{
    color: #87cefa;
    transition: all 0.15s;
}

.single_blog_container .blog_brief a:hover{
    color: #43b7ff;
    text-decoration: underline;
}

.step_indicator{
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media only screen and (max-width: 1024px) {
    .faq_item_keeper_item_inside{padding: 0px; margin: 10px;}
    .faq_item_keeper_item{ padding: 0px;}
    .faq_section{ padding: 30px 0;}
    .login_page_container_left_inside { padding: 61px 35px; }
    .home_profile_form_top{ flex-direction: column; }
    .home_profile_image_keeper_container{ margin-bottom: 40px; }
    .home_profile_form_right{padding-left: 0;}
}


@media only screen and (max-width: 850px) {
    .hero_navbar_item_left{  display: none;}
    .hero_navbar_item_right .hero_nav_anchor{ margin-left: 0; }
    .hero_menu_expander{ display: inline-block; }
    .hero_content{ margin-top: 200px; }
    .hero_content_inside{padding-top: 30px; justify-content: center; text-align: center;margin-top: -420px; padding-bottom: 170px;}

    .only_mobile_visible{ display: block;}
    .hero_content_btn{ display: none;}
    .hero_content_btn_second{ display: inline-flex;}
    .faq_item_keeper_item{ width: 100%;}

    .slider_one_item{ padding: 10px 0px;}
    .slider_one_item_content{
        flex-direction: column-reverse;
    }
    .slider_one_item_img_keeper{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slider_one_item_img{ max-width: 300px;}
    .slider_one_section .owl-dots { bottom: 20px;  }
    
    .ready_section_left{ align-items: baseline; }

    .ready_section_right{
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .ready_section_right_inside{
        padding-right: 27px;
        padding-bottom: 230px;
    }
    .ready_section_right .hero_content_btn { display: inline-flex;} 
    /* .ready_section_right { z-index: 1; width: 100%; align-items: last baseline; }
    */
    .heard_join{
        flex-direction: column;
    }
    .heard_join_left, .heard_join_right{ width: 100%;}
    .heard_join .hero_content_btn { display: inline-flex;} 
    .ready_section{ padding-top: 80px;}
    .ready_section{ padding-bottom: 80px;}
    .hero_button_keeper_mobile { display: block;}


    .profile_hero_section{ padding: 10px;}
    .profile_hero_section_inside{ flex-direction: column-reverse; }
    .profile_hero_section_left{ text-align: center;}
    .profile_left_bottom{ justify-content: center; padding-bottom: 30px;}
    .profile_left_top h2{ margin-top: 22px; }


    .profile_footer{ padding: 40px 10px; }

    .home_logo_keeper{ text-align: center;}
    .edit_your_portfolio_txt{ text-align: center;}
    .two_input_keeper, .three_input_keeper{ display: block;}
    .two_input_keeper>div, .three_input_keeper>div { padding-right: 0; }
}
@media only screen and (max-width: 730px) {
    .footer_inside{ flex-wrap: wrap;}
    .footer_left, .footer_middle, .footer_right{ width: 100%;}
    .footer_left_heading br{ display: none; }
    .footer_left_heading{ margin-bottom: 40px;}
    .footer_right{ margin-top: 70px; }
    .log_page_mainbody{ background: #000; }
    .profile_footer_inside{ flex-direction: column; }
    .profile_footer_inside>div{ margin-bottom: 40px;}
    .profile_footer_right{ margin-top: 70px;}
    .login_page_body{  position: relative;  height: auto; background: none; background-image: url('../assets/background_login_mobile.png'); background-position: top right; background-size: contain; background-repeat: no-repeat; }
    .reg_page_body{background-image: url('../assets/registration_phone.png');}
    .login_page_inside { padding: 25px; }
    .login_page_heading{ display: none;}
    .login_page_container_inside{ flex-direction: column; align-items: center; }
    .login_page_container_right{ width: 100%; max-width: 367px; border-radius: 24px; border: 1px solid #472525; opacity: 0.96; background: linear-gradient(157deg, rgba(91, 88, 87, 0.00) 3.32%, #000 96.41%), #0A0A0B;}
    .login_page_container_right_inside{ padding: 40px 0;}
    .login_welcome_description{display: none;}
    .login_page_container_left { width: 100%; border-radius: 0; background: none; }
    .login_page_container_left_inside{ background: none;}
    .login_welcome_brief{ margin-bottom: 0; margin-top: 10px;}
    .login_welcome_back{ margin-top: 70px;}
    .login_button{ width: 100%; }
    .dont_have_account_text{ display: flex; align-items: center; justify-content: space-between; }
    .home_main_edit_container{ border-radius: 24px; border: 1px solid #1F1E1E; background: rgba(10, 10, 11, 0.85); box-shadow: -4px -4px 14px 0 rgba(253, 123, 56, 0.10), 4px 4px 12px 0 rgba(253, 123, 56, 0.10); backdrop-filter: blur(20px); position: relative; }
    .home_main_container{ background-image: url('../assets/mobile_home_bg.png'); background-position: center center; background-repeat: no-repeat; background-attachment: fixed; background-size: contain; background-color: #000; }
    .home_main_container_inside { padding: 10px 15px; }
    .home_main_navitem { padding: 19px 20px; }
    .home_profile_form_top{ padding: 0 25px; padding-bottom: 40px; }
    .home_profile_userlink { padding: 9px 15px; font-size: 16px; margin-right: 5px; }
    .hoome_profile_short_btn{ margin-right: 0; }
    .home_main_edit_navbar_container{ position: sticky; top: 0; margin-bottom: 30px; z-index: 2000; background-color: #00000063; backdrop-filter: blur(20px); border-radius: 29px; padding: 15px;}
    .about_us_container_inside{ padding: 30px; margin-bottom: 60px; }
    .about_us_description{ font-size: 16px; letter-spacing: 0.5px; text-align: justify; line-height: 1.5rem; }

    .home_logout_btn{ display: none;}
    .home_logout_btn_mobile{ display: flex;}
}
@media only screen and (max-width: 590px) {
    .hero_navbar_item_right .hero_nav_anchor{ display: none; }
    .content_section_middle{ padding: 0; margin: 0;}
    .content_section_middle_inside{ gap: 15px;}
    .heroo_content_bottom_header{ font-size: 60px;}
    .hero_content_inside{margin-top: -357px;}
    .hero_content{ margin-top: 100px;}
    .slider_two_item_content{ flex-direction: column-reverse; height: auto; }
    .slider_two_item_content_left, .slider_two_item_content_right { width: 100%; }
    .slider_two_brief{ margin-top: 10px;}
    .slider_two_item_content_left{ padding-bottom: 64px;}
    .heard_join_left{ justify-content: space-between;}
    .profile_header_item {  margin: 0; }
    .profile_hero_section_img_keeper { width: 341px; height: 400px; }
    .profile_header_inside{ padding-bottom: 8px; }

}

@media only screen and (max-width: 430px) {
    .heard_join_left h3{text-align: center;}
    .heard_join_left{ justify-content: space-between; justify-content: flex-start; flex-direction: column;}
    .heard_join_right { padding: 0; text-align: center; }
}






/* 

.profile_header_item {
    position: relative;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.profile_header_item.active {
    opacity: 1;
    color: #fd7b38;
}

.profile_header_item.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #fd7b38;
    border-radius: 2px;
} */