/*
========================
Header area start
========================
*/

body {	
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;    
	background: #181618;
	color: #ffffff;	
  overflow-x: hidden !important;
  -webkit-overflow-x: hidden;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
p {
    margin: 0;
}
::selection {
    color: white; 
    background: #0078d7;
    text-shadow: 2px 2px 5px #000;
}

::-webkit-selection {
    color: white; 
    background: #0078d7;
    text-shadow: 2px 2px 5px #000;
}

::-moz-selection {
    color: white; 
    background: #0078d7;
    text-shadow: 2px 2px 5px #000;
}


:root {
  --blue: #4169e1;
  --pink: #ff0073;
  --dark: #101010;
  --black: #000000;
  --white: #ffffff;  
  --yellow: #f7b10f;
}

/* <!-- header-area start --> */

/* navigation area ------- */
.header_part {
    width: 100%;
    padding: 3px 50px;
    color: var(--white); 
    position: fixed;
    top: 10px;
    z-index: 999;  
}

.header_part a {
    color: var(--white);
    font-weight: 900;   
    display: inline-block;
    font-family: "roboto", sans-serif;  
}


.header_part a span {
    color: #f7b10f;
    font-weight: 900;
    scale: 2;
    display: inline-block;
    padding: 0 7px;    
    font-family: "roboto", sans-serif;
}

.header_part a code {
    color: var(--pink);
}

.navigation_part {
    height: auto;
    width: 170px;
    display: block;
    position: fixed;
    left: 0;
    top: 22%;
    z-index: 999;   
}

.navigation_part ul li {   
    margin: 10px 0;
    padding-left: 15px;
    box-sizing: border-box;
}

.navigation_part ul li a {
  color: var(--white);
  text-decoration: none;    
  background: #252525;
  width: 50px;
  height: 50px;    
  text-align: center;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;   
  border-radius: 50px; 
  overflow: hidden;
  z-index: 0;
  transition: 0.3s all ease; 
}


.navigation_part ul li a::after {
    content: "";
    width: 5%;
    height: 100%;
    background: var(--blue);
    position: absolute;
    left: -5%;
    transition: 0.3s all ease;
    z-index: -1;
}


.navigation_part ul li a span {   
  background: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: start;
  align-items: center;
}


.navigation_part ul li a svg {
    height: 23px;
    width: 23px;
    fill: var(--white);
    z-index: 999;
    margin-left: 15px;
       
}

.navigation_part ul li a p {
    padding: 0;
    margin: 0 0 0 5px;
    font-weight: 400;
    transition: 0.5s all ease;
    text-transform: uppercase;
    font-size: 16px !important;
    position: absolute;
    right: 100%;        
}

.navigation_part ul li a:hover {
  width: auto;
}


.navigation_part ul li a:hover:after {
    width: 110%;
}
.navigation_part ul li a:hover p {    
    opacity: 1;
    left: 30%;
}



/* ---00----------------- */


/* main_div_area ----------- */
.mother_div {
    height: 100vh !important;
}
.main_div {
    width: 100% !important;
    height: 100vh;
    background: #181618;
    display: flex;
    position: relative;
}
.part_left {
    height: 100%;
    width: 26%;
    display: block;
    background: var(--blue);
    position: relative;
    overflow: hidden !important;
}

.part_left::after {
    content: "";
    display: block;
    height: 125%;
    width: 100%;
    background: #181618;
    position: absolute;
    right: 63%;
    top: -100px;
    transform: rotate(17deg);
}

.part_right {
    width: 74%;
    height: 100%;
}

.contant_div_part {
    width: 100%;
    height: 100%;
    position: absolute;    
    top: 0;
    left: 0;
    background: transparent;
}

.pro_content_img {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin: 70px auto 0;
  display: none;
  box-sizing: border-box;
  border: 1px solid var(--blue);
  box-shadow: 0px 0px 5px #0000;  
}

.pro_content_img img{
  width: 100%;
  height: 100%;  
}

.profile_img {
    width: 100% !important;
    height: 83vh;
    box-shadow: 0px 0px 10px 1px #000;
    border-radius: 40px;
    overflow: hidden;
    background: var(--dark);
    text-align: center;
}

.profile_img img {
    width: auto;
    height: 100%;    
}

.profile_content h1 {
    color: var(--blue);
    font-size: 50px;
    font-weight: 900;
    font-family: "roboto", sans-serif;
    margin: 0;
    padding: 0;
}

.profile_content {
    padding: 0 100px;
}

.profile_content h2 {   
    font-size: 50px;
    font-weight: 600;
    font-family: "roboto", sans-serif;
    margin: 0;
    padding: 0;
}

.profile_content span {      
    font-weight: 500;
    font-family: "roboto", sans-serif;   
}

.profile_content p {       
   font-family: "roboto", sans-serif;
   font-size: 20px;
   margin-top: 30px; 
   padding-right: 20px; 
}

.profile_content a, .personal_info a {       
   font-family: "roboto", sans-serif;
   margin-top: 30px;
   font-size: 18px;
   color: var(--white);
   text-decoration: none; 
   margin-top: 30px; 
   display: inline-block;
   padding: 10px 15px 7px 20px;
   border: 1px solid var(--blue);
   border-radius: 30px;   
   font-weight: 600;
   position: relative;
   z-index: 999;
   overflow: hidden;
}

.profile_content a::after, .personal_info a::after {
    content:"";
    width: 55px;
    height: 110%;
    background: var(--blue);
    position: absolute;
    right: 0;
    top: -2px;
    border-radius: 50%;
    z-index: -1;
    transition: 0.3s all ease;

}

.profile_content a:hover::after, .personal_info a:hover::after {
    width: 100%;
    border-radius: 0%;   
}

.profile_content svg {
    fill: var(--white);
    margin-left: 30px;
    z-index: 999;
   
}
/* --------00---------------- */


/*  about_area start-========================== */

.about_area {
    padding: 50px 0 30px;
}
.about_header, .portfolio_header {
    position: relative;
}
.about_header span, .portfolio_header span {
    display: inline-block;
    color: #212121;
    font-size: 110px;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    line-height: 95px; 
  
}

.about_header div, .portfolio_header div {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about_header p, .portfolio_header p {
    display: inline-block;
    color: var(--white);
    font-size: 56px;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin: 0;
   
   
}

.about_header p span, .portfolio_header p span {
    display: inline-block;
    color: var(--blue);
    font-size: 56px;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin: 0;   
}

.personal_info {
    padding: 50px 0 0;
}

.personal_info h2 {
    font-weight: 600;
    font-size: 30px;
    font-family: 'roboto', sans-serif;
    text-transform: uppercase;
    margin: 0 0 30px;
    
}

.personal_info ul li {
    display: flex;
    margin: 10px 0;
}


.personal_info ul li p {
    opacity: 0.7;
    font-size: 16px;
}
.personal_info ul li span {
    font-weight: 600;
    display: inline-block;
    margin-left: 3px;
    font-size: 16px;
}

.personal_info a {
    width: auto;
    display: inline-block;
}
.personal_info a svg {
  fill: var(--white);
  margin-left: 20px;
}

.info_right_part .col-12 div {
    border: 1px solid #132455;
    padding: 10px 30px;
    margin: 10px 0 10px;
}

.info_right_part .col-12 div h3 {
    color: var(--blue);
    font-size: 45px;
    font-weight: 900;
}

.info_right_part .col-12 div p {
    color: var(--white); 
    font-weight: 600;
    padding: 0 0 0 40px;
    position: relative;
}

.info_right_part .col-12 div p::before {
   content: "";
   width: 35px;
   height: 1px;
   background: #666;
   position: absolute;
   top: 13px;
   left: 0%;
}


/* --skil_area_start-- */
.skil_area {
    border-radius: 10px;
    position: relative;   
    padding: 20px 0 80px;
    margin-top: 50px;
  }
  
  .skil_area::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    top: 60%;
    background: var(--blue);
    z-index: 0; 
  }
  
  .skil_area header h2, .testimonial h2 {
    color: var(--white);
    font-size: 50px;
    font-weight: 600;
    margin-top: 25px
  }
  
  .skil_area header span, .service_area header span, .my_portfolio .port_header span, .testimonial span {
    width: 50%;
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin: 0 auto 30px;
  }
  
  .skil_inner {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
   
    text-align: center;   
    width: 100%;
    height: 300px;   
    text-align: center;
    padding: 0 20px;
    margin-top: 50px;
    z-index: 10;
  }
  
  .skil_card::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top: 3px solid var(--blue);
    opacity: 0.8;
    border-right: 3px solid var(--blue);
    border-radius: 0 10px 0 0px;
  }
  
  .skil_card::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-left: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    border-radius: 0 0 0 10px;
    opacity: 0.8;
    z-index: 999;
  }
  
  .skil_card {     
    width: 100% !important;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 10px rgba(50, 50, 50, 0.6);
    border: 1px solid var(--blue);
    z-index: 12;
    border-radius: 10px;
  }
  
  .skil_number {
    position: absolute;
    top: 35%;
    left: 5%;
    width: 100%;
  }
  
  
  .skil_number h2 {
    color: var(--white);
    font-weight: 900;
    font-size: 45px !important;
  }
  
  .skil_number h2 span {
    color: var(--blue);
    font-weight: 600;
    font-size: 18px !important;
  }
  
  .skil_text {
    padding: 10px 20px 10px;
    font-weight: 900;
    /* background: rgb(223, 1, 1); */
    border-radius: 15px;
    letter-spacing: 2px;
    box-sizing: border-box;
    z-index: -1 !important;
    pointer-events: none;
    transition: bottom 0.5s, z-index 0s, transform 0.5s, padding 0.5s;
    transition-delay: 0.5s, 0.5s, 0s, 0.5s;
    color: var(--white);
    font-size: 18px;
    text-shadow: 2px 2px 2px #000 !important;
  }
  
  .java_p {
    left: 23%;
  }
  
  
  .sk_btstp {
    left: 25%;
    letter-spacing: 1px;
  }
  
  .skil_inner:hover .skil_text {
    transition-delay: 0s, 0.5s, 0.5s, 0s;
    bottom: -60px;
    transform: translateY(-45px);
    padding: 10px 20px 10px; 
    z-index: 999!important;
  }
  
  .skil_percent {
    position: relative;
    width: 150px;
    height: 150px;
    align-self: center;
    justify-self: center;
    z-index: -1;
  }
  
  .skil_percent svg {
    width: 100%;
    height: 100%;
  }
  
  .skil_percent svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 10;
    stroke: rgba(0, 55, 206, 0.1);
    transform: translate(5px, 5px);
    stroke-linecap: round;
  }
  
  .skil_percent svg circle:nth-child(2) {
    stroke-dasharray: 420px;   
  }
  
  .skil_area :nth-child(1) .skil_percent svg circle:nth-child(2) {
    stroke: rgb(255, 17, 136); 
    stroke-dashoffset: calc(440px - (440px * 95) / 100);
  }
  
  .skil_area :nth-child(3) .skil_percent svg circle:nth-child(2) {
    stroke: rgb(223, 1, 212);
    stroke-dashoffset: calc(440px - (440px * 85) / 100);
  }
  .skil_area :nth-child(4) .skil_percent svg circle:nth-child(2) {
    stroke: rgb(250, 100, 0);
    stroke-dashoffset: calc(440px - (440px * 78) / 100);  
  }
  
  .skil_area :nth-child(5) .skil_percent svg circle:nth-child(2) {
    stroke: rgb(16, 192, 0);
    stroke-dashoffset: calc(440px - (440px * 72) / 100);
  }
  
  .skil_area :nth-child(2) .skil_inner .skil_text {
    background: rgb(255, 17, 136);
  }
  .skil_area :nth-child(3) .skil_inner .skil_text {
    background: rgb(223, 1, 212);
  }
  .skil_area :nth-child(4) .skil_inner .skil_text{
    background: rgb(250, 100, 0);
  }
  .skil_area :nth-child(5) .skil_inner .skil_text {
    background: rgb(16, 192, 0);
  }
  /* --skil_area_start-- */

/* service_area_start======================= */
.service_area {
    padding: 30px 0 30px;  
  }
  
  .service_area header h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--white);
  }
  
  .service_inner {
    width: 100%;
    height: 250px;
    padding: 8px;
    margin-top: 20px;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid var(--blue);
    border-radius: 12px;    
    box-shadow: 0 10px 10px var(--black);
    background-color: var(--dark);
    transition: 0.3s all ease;
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(70deg,rgb(183, 235, 255), #fff); */
  }

  
.service_inner:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top: 3px solid var(--blue);
    opacity: 0.8;
    border-right: 3px solid var(--blue);
    border-radius: 0 10px 0 0px;
  }
  
  .service_inner::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-left: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    border-radius: 0 0 0 10px;
    opacity: 0.8;
    z-index: 999;
  }
  

  
  .service_inner:hover {
    transform: scale(1.02);
    cursor: pointer;
  }
  
  .service_inner svg {
    width: 80px;
    height: 80px;
    fill: var(--blue);
  }
  
  .service_inner h2 {
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  
  .service_inner p {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    margin: 0;
    display: block;
    text-wrap: nowrap;
    text-overflow: ellipsis !important;
    overflow: hidden;
  }
  /* service_area_end ==========================*/
  
/* Testimonial_area start======= */

  .testimonial_part {      
    background: var(--dark); 
    box-shadow: 0 10px 10px var(--black);  
    z-index: 12;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid var(--blue);
    text-align: center;
    height: 380px;    
    margin-top: 30px;
    position: relative;
  }

  
.testimonial_part:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top: 3px solid var(--blue);
    opacity: 0.8;
    border-right: 3px solid var(--blue);
    border-radius: 0 10px 0 0px;
  }
  
  .testimonial_part::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-left: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    border-radius: 0 0 0 10px;
    opacity: 0.8;
    z-index: 999;
  }
  
  

.testimonial {
    padding: 50px 0;    
    box-sizing: border-box;
  }

  .testimonial_part img {
    width: 150px;
    height: 150px;
    box-sizing: border-box;
    border-radius: 50%;
    margin: 10px auto 0;
  }
  
  .testimonial_part span {
    color: var(--yellow);
    font-size: 18px;
    margin: -5px auto 5px;
    display: block;
  }
  
  .testimonial_part h2 {
    font-size: 30px; 
    color: var(--white);
    margin: 10px auto 0;
  }
  
  .testimonial_part p {
    font-size: 14px;
    padding: 0 10px;
  }
  
  /* Testimonial_area end======= */
    
  
/*  end_about ---00---------------------------- */




/* My_portfolio_area start---===================== */

.portfolio_img {
  width: 100%;
  height: 210px;
  border-radius: 7px;
  box-shadow: 0px 10px 10px 5px var(--black);
  overflow: hidden;
  margin: 20px 0;
  position: relative;
}

.portfolio_img img{ 
  height: 100%;
  width: 100%;
}

.portfolio_img::after, .portfolio_img::before {
  content: "tfolio";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -100%;
  background: var(--blue);
  opacity: 0.8;
  display: flex;
  align-items: center;
  transition: 0.5s all ease;
  font-weight: 600;
  z-index: 999;
}

.portfolio_img::before {
  content: "My Por"; 
  left: -100%;
  justify-content: end; 
}

.portfolio_img:hover::after { 
  right: 0;
}
.portfolio_img:hover::before { 
  left: 0;
}

/* end portflio-- --00----------------------------- */


/* My_blog_area_start -====================== */

.my_blog_area {
  padding: 50px 0;
}

.portfolio_header {
  margin-bottom: 50px;
}

.blog_inner {
  background: var(--black);
  margin-top: 30px;
  box-shadow: 0px 5px 5px 5px var(--black);
}

.blog_inner .blog_img {
  width: 100%;
  max-height: 245px !important;
  overflow: hidden;
  background: #0078d7;
}
.blog_inner img {
  transition: 0.3s all ease;
}

.blog_inner img:hover {
  scale: 1.3;
}

.blog_inner span {
  display: block;
  width: 100%;
  height: 6px;
  background: var(--yellow);
}

.blog_inner h3 {
  color: var(--white);
  font-size: 25px; 
  font-weight: 600;
  text-transform: capitalize;
}

.blog_inner h3:hover {
  color: var(--yellow);
}

.blog_contant {
  padding: 25px;
}

.blog_btn {  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}


.hobby, .profasion {
  color: var(--white);
  padding: 10px 30px;
  margin: 2px 5px;
  background: var(--black);
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0px 2px 5px 3px var(--black);
  outline: none;
  border: none;
}


.hobby:hover, .profasion:hover {
  background: var(--blue);
}


/* end-My_blog_area_start-----00--------------- */













/* contract_Discription_area_start ===================*/
.contract_area {
  color: var(--white);
  padding: 60px 0;
  box-sizing: border-box;
}

.contract_part {
  padding: 15px 25px;
  color: var(--black);
}

.contract_area h3 {
  color: var(--white);
  font-weight: 600;
  font-size: 45px;
  margin-bottom: 30px;
  text-transform: uppercase;
 
}

.contract_part form input, .contract_part form textarea {
  width: 100%;
  padding: 15px 10px;
  color: var(--white);
  margin: 10px 0px;
  background-color: #252525;
  backdrop-filter: blur(15px);
  border: 1px solid var(--blue);
  border-radius: 5px;
  outline: none;
}

.contract_part form input:focus, .contract_part form textarea:focus {
  border: 1px solid var(--yellow) !important;
}

.contract_part form [type="submit"] {
  width: 50%;
  background: transparent;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  outline: none;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.1s all ease;
  box-sizing: border-box;
}
.contract_part form [type="submit"]:hover {
  background: var(--blue);
  color: var(--white);
}

.contract_part form [type="submit"]:focus {
 box-shadow: inset 0px 0px 5px var(--black) !important;
 border: 1px solid var(--yellow);
}

.cont_me_img {
  margin: auto;
  text-align: center;  
}

.cont_me {
  width: 80%;
  padding: 10px;
  margin: auto;
  box-sizing: border-box;
  border: 1px solid var(--blue);
  font-weight: 600;
}

.cont_me h3 {
  font-size: 30px;
  margin: 20px 0;
}

.cont_me p {
  font-weight: 400;
  opacity: 0.7;
}

.cont_me ul {
  margin: 20px 0 0 10px;
}

.cont_me ul li svg{
  width: 30px;
  height: 30px;
  fill: var(--blue);
  margin: 10px 10px 10px 0;    
  color: var(--blue);
  text-align: center;
}

.footr_part{
  margin: 20px 0 40px 0;
}


.footr_part .d-flex li a svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
  margin: 0 10px;
  transition: 0.3s all ease;
  background: var(--black);
}

.footr_part .d-flex li a svg:hover {
  scale: 1.4;
  fill: var(--blue);
}

.footr_part ul li a:hover {
  text-decoration: underline !important;
}
/* ===========================contract_Discription_area_start */

/* animation_area------------------ */
.main_aniamtion_area {
  width: 100%;
  height: 100vh;
  overflow: hidden; 
  margin: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999 !important;
}


.aniamtion_area {
  position: relative;
  min-width: 100% !important;
  height: 100%;
  z-index: 999 !important;
}

.activ_animation {
  display: block;
 }
 

.animated_part {
  height: 100% !important;   
}

.ani_part_2, .ani_part_1 {
  min-width: 100% !important;
  position: absolute; 
  left: 0;
  z-index: 999 !important;
}


.ani_part_1 {
  background: var(--blue);
  animation: my_animation_color 4s;
}

@keyframes my_animation_color {
  0% {
    top: -100%;   
    height: 130vh;
  }
  25% {
    top: 100%;
    height: 100vh;
  }
  50% {
    top: 100%;
    height: 0vh;  
  }
  75% {
    top: 0%;
    height: 0vh;  
  }
  100% {
    top: 0%;
    height: 0vh;
  }
}

.ani_part_2 {
  background: var(--black);
  animation: my_animation_black 4s;
} 

@keyframes my_animation_black {
  0% {
    top: -40%;   
    height: 00vh;
  }
  25% {
    top: 100%;
    display: none;
    height: 100vh;
  }
  50% {
    top: 100%;
    display: none;
    height: 100vh;
  }
  75% {
    top: 100%;
    display: none;
    height: 0vh;
  }
  100% {
    top: 0%;
    height: 0px;
    display: none !important;
  }
}

/* end_animation---------------00----------- */

/* ==---mobile manu--------------- */
.mobile_manu {
  height: 100vh;
  width: 0px;  
  position: fixed;
  top: 0;
  background: var(--black); 
  transition: 0.3s all ease;
}

.manu_inner {
  width: 100%;
  height: auto;
  padding: 50px 0;   
 
}

.manu_inner_block {
  width: 175px;
  padding-right: 5px; 
}


.mobile_manu ul li a {
  opacity: 1;
  width: auto;
}

.mobile_manu ul li a p {
   position: absolute;
   left: 30%;
}

/* .mobile_a_active ul li a {
  opacity: 1;
} */

.manu_toggler {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 999;
  padding: 0;
  margin: 0;
  background-image: url(images/menu__icon2.png);
  background-color: var(--black);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 15px;
  outline: none;
  overflow: hidden;
}














































.active {
    background: #4169e1 !important;
}

.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
}