@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,500,600,700,800display=swap");
:root {
  --main-color: #000000;
  --heading-color: #FFC70A;
  --paragraph-color: #646e85;
  --body-font: "Montserrat", sans-serif;
  --body-font-size: 16px;
  --line-height30: 1.6;
  
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
 
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {


  margin: 0;
  color: var(--paragraph-color);
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);

}

h1 {
  font-size: 45px;
  line-height: 1.2333333333;
  
}

h2 {
  font-size: 36px;
  line-height: 1.3380952381;
}

h3 {
  font-size: 32px;
  line-height: 1.3833333333;
}

h4 {
  font-size: 24px;
  line-height: 1.3380952381;
}

h5 {
  font-size: 20px;
  line-height: 1.3380952381;
}

h6 {
  font-size: 16px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #5d666a;
  font-weight: 700;

}

p {
  color: var(--paragraph-color);
 
  margin-bottom: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}



pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}



.boxed_wrapper{
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}
/* Preloader */

.preloader{
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(15, 15, 15);
  position: fixed;
  z-index: 1999999999;
  width: 100%;
}

	.center {
			position: relative;
			width: 300px;
			height: 300px;
			border-radius: 50%;
			border-top: 6px solid #FFC70A;
			animation: anim 2s linear infinite;
			animation-direction: all;
		}
		.center:before {
			content: "";
			position: absolute;
			top: 110px;
			right: -10px;
			width: 30px;
			height: 30px;
			border-radius: 50%;
			background: #FFC70A;
		}
		@keyframes anim {
			0% {
				transform: rotate(0deg);
			}
			25% {
				transform: rotate(90deg);
			}
			50% {
				transform: rotate(180deg);
			}
			75% {
				transform: rotate(270deg);
			}
			100% {
				transform: rotate(360deg);
			}
		}
.containerload{
    position: absolute;
    top: 50%;  left: 50%;
    transform: translate(-50%,-50%);
    width: 230px;   height: 230px; 
  
}
.containerload .center{
    position: relative;
    top: 0px;    left: 0px;
    width: 100%;   height: 100%;
   
    animation : animate 2s infinite linear;
}
.containerload img{
    position: absolute;
    top: 50%;  left: 50%;
    transform: translate(-50%,-50%);
    font-size:20px;
}
@keyframes animate{
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}


  /*****************Side bar******************/
.sidebar
{
    width: 280px;
    position: fixed;
    height: 100%;
    background-color: var(--main-color);
    z-index: 100;
    transition: width 300ms;
}
.sidebar-brand {
    height:90px;
    padding: 1rem 0rem 1rem 2rem;
    color: #fff;
}

.sidebar-brand span{
display: inline-block;
padding-right: 1rem;

}
.sidebar-menu {
    margin-top: 1rem;
}
.sidebar-menu li
{
    width: 100%;
    margin-bottom: 1.7rem;
    padding-left: 1rem;
}

.sidebar-menu a
{
    padding-left: 1rem;
    display: block;
    color:#fff;
    font-size: 1.1rem;
     
}
ul li{
  list-style-type: none;

}


.active{
      background: #5C527F;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: var(--main-color);
    border-radius: 30px 0px 0px 30px;
}

.sidebar-menu a:hover
{
    background: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: var(--main-color);
    border-radius: 30px 0px 0px 30px;
}



.sidebar-menu a span:first-child{
    font-size: 1.5rem;
    padding-right: 1rem;
    
}

#nav-toggle:checked + .sidebar
{
    width: 80px;
}
#nav-toggle:checked + .sidebar .sidebar-brand,
#nav-toggle:checked + .sidebar li
{
    padding-left: 0rem;
    text-align: center !important;
}
#nav-toggle:checked + .sidebar .sidebar-brand,
#nav-toggle:checked + .sidebar li a
{
    padding-left: 0rem;
}

#nav-toggle:checked + .sidebar .sidebar-brand h2 span:last-child:last-child,
#nav-toggle:checked + .sidebar li a span:last-child
{
   display:none;
}
#nav-toggle:checked ~ .main-content
{
    margin-left: 70px;
}

#nav-toggle:checked ~ .main-content header
{
    width: calc(100% - 70px);
    left: 70px;
}
.main-content{
    transition: margin-left 300ms;
    margin-left: 280px;
}

header{
    background-color: var(--main-color);
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
 box-shadow: 0 4px 17px rgba(0, 0, 0, 0.35);
 position:fixed;
 left: 280px;
 width: calc(100% - 280px);
 top: 0;
 z-index: 100;
     transition: left 300ms;
}

#nav-toggle
{
    display: none;
}


header label span 
{
    font-size: 1.7rem;
    padding-right: 1rem;
}
.user-wrapper
{
    display: flex;
    align-items: center;
    padding-right:5%;
   
}
.user-wrapper img 
{
    border-radius: 50%;
    margin-right: 1rem;
   
}
.user-wrapper h4{
    margin-bottom: orem !important;
}
main
{
   
    padding: 6rem 1.5rem;
    background: #f0f0f0;
    min-height: calc(100vh - 90px);
}

@media only screen and (max-width: 1200px)
{
.sidebar
{
    width: 70px;
}
 .sidebar .sidebar-brand,
 .sidebar li
{
    padding-left: 0rem;
    text-align: center;
    
}
 .sidebar li a
{
    padding-left: 0rem;
}
 .sidebar .sidebar-brand h2 span:last-child:last-child,
.sidebar li a span:last-child
{
   display:none;
}


 .main-content
{
    margin-left: 70px;
}

 .main-content header
{
    width: calc(100% - 70px);
    left: 70px;
}

.sidebar:hover 
{
    width: 300px;
    z-index: 200;
}
 .sidebar:hover .sidebar-brand,
 .sidebar:hover li
{
    padding-left: 2rem;
    text-align:left;
}
 .sidebar:hover li a
{
    padding-left: 1rem;
}
 .sidebar:hover .sidebar-brand h2 span:last-child:last-child,
.sidebar:hover li a span:last-child
{
   display:inline;
}
}

@media only screen and (max-width: 768px)
{
    .sidebar{
        left: -100% !important;
    }
   .sidebar-menu a:hover
{
    background: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: var(--main-color);
    border-radius: 30px 0px 0px 30px;
    z-index: 3;
 
}
.sidebar-menu a{
    font-size: 1.5rem;
    padding-right: 1rem;
    
    text-align: start;
}
    header h2 
    {
        display: flex;
        align-items: center;
    }
    header h2 label {
        display: inline-block;
       
background: var(--main-color);
padding-right: 0rem;
margin-right: 1rem;
height: 40px;
width: 40px;
border-radius: 50px;
display: flex;
align-items: center;
color: #fff;
justify-content: center !important
    }
    header h2 span{
        text-align: center;
        padding-right: 0rem;
    }
header h2 
{
    font-size: 1.1rem;
}
    .main-content
    {
        width: 100%;
        margin-left: 0rem;
    }
    header {
        width: 100% !important;
        left: 0 !important;
    }
    #nav-toggle:checked + .sidebar{
        left: 0 !important;
        z-index: 100;
        width: 345px;
    }

  
     #nav-toggle:checked +  .sidebar:hover .sidebar-brand,
  #nav-toggle:checked + .sidebar li
{
    padding-left: 2rem;
    text-align:left;
}
  #nav-toggle:checked + .sidebar li a
{
    padding-left: 1rem;
}
  #nav-toggle:checked + .sidebar .sidebar-brand h2 span:last-child:last-child,
 #nav-toggle:checked +  .sidebar li a span:last-child
{
   display:inline;
}

 #nav-toggle:checked ~ .main-content{
     margin-left: 0rem !important;
 }
main
{
   
    padding: 8rem 1.5rem;
    background: #f0f0f0;
    min-height: calc(100vh - 90px);
}

 
}

  /**************sidebar end******************/
  /*********************dropdwon menu****************/
  
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
     border-radius: 15px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #FFC70A;
   }

.dropdown:hover .dropdown-content {display: block;}
.arrow{
    position: absolute;
    width: 20px;
    height: 20px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}
.user-wrapper img:before {
   content: ' ';
    display: block;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    
    background-image: url(../image/dp.png);
    }

/**********************end drop***************/

.wave{
	position: fixed;
	bottom: 0;
	left: 0;
	height: 100%;
	z-index: -1;
}

.login-container{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap :7rem;
    padding: 0 2rem;
}

.img{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.login-content{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.img img{
	width: 500px;
}

.form1{
	width: 360px;
}

.login-content img{
    height: 100px;
}

.login-content h2{
	margin: 15px 0;
	color: #333;
	text-transform: uppercase;
	font-size: 2.9rem;
}

.login-content .input-div{
	position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin: 25px 0;
    padding: 5px 0;
    border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one{
	margin-top: 0;
}

.i{
	color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
}

.i i{
	transition: .3s;
}

.input-div > div{
    position: relative;
	height: 45px;
}

.input-div > div > h5{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	font-size: 18px;
	transition: .3s;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #070707;
	transition: .4s;
}

.input-div:before{
	right: 50%;
}

.input-div:after{
	left: 50%;
}

.input-div.focus:before, .input-div.focus:after{
	width: 50%;
}

.input-div.focus > div > h5{
	top: -5px;
	font-size: 15px;
}

.input-div.focus > .i > i{
	color: #070707;
}

.input-div > div > input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #555;
	font-family: 'poppins', sans-serif;
}

.input-div.pass{
	margin-bottom: 4px;
}

 .forgot a{
	display: block;
	text-align: right;
	text-decoration: none;
	color: #999;
	font-size: 0.9rem;
	transition: .3s;
}

.forgot a:hover{
	color: #070707;
}

 



.login-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 17px rgba(0, 0, 0, 0.35);
    padding: 10px;
    border-radius: 15px;
  }

 


.btn1{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
 
	background-image: linear-gradient(to right, rgba(255, 78, 65, 0.8), rgba(255, 198, 10, 0.8), rgba(255, 78, 65, 0.8));
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}
.btn:hover{
	background-position: right;
}


.btns1:hover{
	background-position: right;
  color: #fff;
}

.buttons
{

	
	outline: none;
	border: none;
 
	background-image: linear-gradient(to right, #80ED99, #22577A, #80ED99);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	transition: .5s;
}

@media screen and (max-width: 1050px){
	.login-container{
		grid-gap: 5rem;
	}
}

@media screen and (max-width: 1000px){
	.login-card{
		width: 345px;
	}

	.login-content h2{
        font-size: 2.4rem;
        margin: 8px 0;
	}

	.img img{
		width: 400px;
	}
}

@media screen and (max-width: 900px){
	.login-container{
		grid-template-columns: 1fr;
	}

	.img{
		display: none;
	}

	.wave{
		display: none;
	}

	.login-content{
		justify-content: center;
	}
}
.counters{

padding-top: 20px;
 padding-bottom: 10px;

 color: #000000;
 
  }
.total-ques
{
  width: 50px;
  height: 50px;
 padding-top: 15px;
}

.tabcontent {
    display: none;


}
.hour {
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: relative;
  box-shadow: -3px -3px 7px #ffffffb2, 3px 3px 5px rgba(94, 104, 121, 0.945);
  overflow: hidden;
  margin: 10px;
  background-color:#F6A9A9;
}
.hour:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  width: 80%;
  border-radius: 50%;
    box-shadow: inset -3px -3px 7px #ffffffb0,
    inset 3px 3px 5px rgba(94, 104, 121, 0.692);
}

 
.min {
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: relative;
  box-shadow: -3px -3px 7px #ffffffb2, 3px 3px 5px rgba(94, 104, 121, 0.945);
  overflow: hidden;
  margin: 10px;
  background-color:#C2F784;
}
.min:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  width: 80%;
  border-radius: 50%;
    box-shadow: inset -3px -3px 7px #ffffffb0,
    inset 3px 3px 5px rgba(94, 104, 121, 0.692);
}

 
.second {
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: relative;
  box-shadow: -3px -3px 7px #ffffffb2, 3px 3px 5px rgba(94, 104, 121, 0.945);
  overflow: hidden;
  margin: 10px;
  background-color:#64C9CF;
}
.second:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  width: 80%;
  border-radius: 50%;
    box-shadow: inset -3px -3px 7px #ffffffb0,
    inset 3px 3px 5px rgba(94, 104, 121, 0.692);
}
.h1 {
  position: absolute;
  font-size: 30px;
  font-weight: 600;
  font-family: "Montserrat";
  text-align: center;
  top: 40%;
  left: 50%;
  color: black;
  transform: translate(-50%, -50%);
}
.h2 {
  position: absolute;
  font-size: 30px;
  font-weight: 600;
  font-family: "Montserrat";
  text-align: center;
  top: 65%;
  left: 50%;
  color: black;
  transform: translate(-50%, -50%);
}
/********************view video******************/
    iframe {
     margin-top: -80px;
}

.hs-responsive-embed-youtube {
position: relative;
padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
padding-top: 25px;
 overflow: hidden;
 
}
.hs-responsive-embed-youtube iframe {
position: absolute;
width: 100%!important;
height: 100%!important;

}

 .ck-editor__editable 
 {
     background-color:#012443;
     
     
 }

/**************end view video*********************/

/***************exam ******************/
  .exam-button:hover
{
  
  text-align: center;
 
  transform: translateY(-3px);
    box-shadow: 0 4px 17px rgba(0, 0, 0, 0.35);
    padding: 10px;
    border-radius: 15px;

}
.exam-row
{
    margin-top:10rem;
  
 margin-bottom:10rem;
}
  .exam-button
{
 
  text-align: center;


    padding: 10px;
   

}
/******************exam End******************/

/*****************update details**************/
.material-textfield {
  position: relative; 
  margin: 30px; 
}


.material-textfield select {
    width: 100%;
    padding: 9px 20px;
    text-align: left;
    outline: 0;
    border: 1px solid gray;
  border-radius: 5px; 
    background-color: #fff;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.label {
  position: absolute;
  font-size: 1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: gray;
  padding: 0 0.3rem;
  margin: 0 0.5rem;
  transition: .1s ease-out;
  transform-origin: left top;
  pointer-events: none;
}
.input {
  font-size: 1rem;
  outline: none;
  border: 1px solid gray;
  border-radius: 5px;  
  padding: 1rem 0.7rem;
  color: gray;
   width: 100%;
  height: 50px;
  transition: 0.1s ease-out;
}
.input:focus {
  border-color: #6200EE;  
}
.input:focus + .label {
  color: #6200EE;
  top: 0;
  transform: translateY(-50%) scale(.9);
  
}
.input:not(:placeholder-shown) + .label {
  top: 0;
  transform: translateY(-50%) scale(.9);
}



.textarea{
  font-size: 1rem;
  outline: none;
  border: 1px solid gray;
  border-radius: 5px;  
  padding: 1rem 0.7rem;
  color: gray;
   width: 100%;
  height: 100px;
  transition: 0.1s ease-out;
}
.textarea:focus {
  border-color: #6200EE;  
}
.textarea:focus + .label {
  color: #6200EE;
  top: 0;
  transform: translateY(-50%) scale(.9);
}
.textarea:not(:placeholder-shown) + .label {
  top: 0;
  transform: translateY(-50%) scale(.9);

}


.invalid-feedback{
    color: #ff606e;
    padding-top:10px;
}

.valid-feedback{
   color: #2acc80;
      padding-top:10px;
}
/*****************end of update details****************/

/********************Resume***********************/

.first-line
{
    
border: 2px solid #000000;
}
.profile-summary .heddings
{
  background-color: #A9E4D7;
  margin-top: 10px;
  padding: 8px;
}
 .tables
 {
   margin-left: 2rem;
   
 }
 .skills
 {
   padding-left: 1rem;
 }
 .accademy
 {
   margin-left: 2rem;
 }
 .years
 {
   padding-left: 10px;
 }
.projects-dsc
{
  padding-left: 5rem;
}
.endsection
{
  padding-right: 2rem;
}
.projectsd
{
    margin-top:10rem;
    background-color:green;
}
/********************End Reusme**********************/
/** main-footer **/

.main-footer{
  position: relative;
 
 
}
.main-footer .footer-bottom{
  position: relative;
  display: block;
  background: #FFC70A;
  padding: 10px 0px;
  text-align: center;
 
  
}
.main-footer .footer-bottom .copyright p{
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.main-footer .footer-bottom .copyright p a{
  color: #fff;
}

.main-footer .footer-bottom .copyright p a:hover{
  text-decoration: underline;
}
