/*Font Awesome Free Icon*/
 @import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
 /*Google fonts*/
 @import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
 /*@import url('https://fonts.googleapis.com/css?family=Rubik:500,700,900&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
 @import url('https://fonts.googleapis.com/css?family=Muli&display=swap');*/

/* define global custom css variables */
:root{
	--bg-black-900: #000000;
	--bg-black-100: #dddddd;
	--bg-black-50: #eff0f4;
	--bg-opacity: rgba(255,255,255,0.5);
	--text-black-900: #000000;
	--text-black-700: #555555;
	--text-black-600: #666666;
	--text-black-300: #bbbbbb;
	--outer-shadow: 3px 3px 3px #d0d0d0, -3px -3px 3px #f8f8f8;
	--outer-shadow-0: 0 0 0 #d0d0d0, 0 0 0 #f8f8f8;
	--inner-shadow: inset 3px 3px 3px #d0d0d0, inset -3px -3px 3px #f8f8f8;
	--inner-shadow-0: inset 0 0 0 #d0d0d0, inset 0 0 0 #f8f8f8;
 }
 /* override custom css variables for dark theme */
 body.dark{
	--bg-black-900: #ffffff;
	--bg-black-100: #353535;
	--bg-black-50: #2b2c2f;
	--bg-opacity: rgba(43,44,47,0.5);
	--text-black-900: #ffffff;
	--text-black-700: #ffffff;
	--text-black-600: #bbbbbb;
	--outer-shadow: 3px 3px 3px #222327, -3px -3px 3px #363636;
	--outer-shadow-0: 0 0 0 #222327, 0 0 0 #363636;
	--inner-shadow: inset 3px 3px 3px #222327, inset -3px -3px 3px #363636;
	--inner-shadow-0: inset 0 0 0 #222327, inset 0 0 0 #363636;
 } 
/*General Style*/
body{
 margin:0;
 line-height:1.5;
 font-size: 16px;
 font-family: 'Montserrat', sans-serif;
 font-weight: 400;
}
*{
	margin:0;
	padding:0;
	outline: none;
	text-decoration: none;
	box-sizing: border-box;
}
::before,::after{
box-sizing: border-box;
}
input,textarea,select{
	font-family: 'Montserrat', sans-serif;
}

.outer-shadow{
	box-shadow: var(--outer-shadow);
 }

.section{
	background-color: #f2f2fc;
	min-height: 100vh;
	display: block;
	padding:0 30px;
	position: fixed;
	left:270px;
	top:0;
	right:0;
	bottom:0;
	z-index:0;
	overflow-x: hidden;
	overflow-y:auto;
	opacity:1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.section.back-section{
   z-index: 1;
}
.section.active{
	opacity:1;
	z-index: 2;
	-webkit-animation: slideSection 1s ease;
	animation: slideSection 1s ease;
}

@-webkit-keyframes slideSection{
	0%{
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	100%{
	   -webkit-transform: translateX(0%);
		transform: translateX(0%);	
	}
}
@keyframes slideSection{
	0%{
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	100%{
	   -webkit-transform: translateX(0%);
		transform: translateX(0%);	
	}
}
.section .container{
	padding-top:60px;
	padding-bottom:70px;
}
.section-title{
  -ms-flex:0 0 100%;
  flex:0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
}
.section-title h2{
	font-size: 40px;
	color:#302e4d;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	margin:0;
	position: relative;
}
.section-title h2::before{
  content: '';
  height: 4px;
  width: 50px;
  position: absolute;
  top:100%;
  left:0;
}
.section-title h2::after{
  content: '';
  height: 4px;
  width: 25px;
  position: absolute;
  top:100%;
  left:0;
  margin-top:8px;
}
.row{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right:-15px;
	margin-left:-15px;
	flex-wrap: wrap;
	position: relative;
}
.padd-15{
	padding-left:15px;
	padding-right:15px;
}

.container{
	max-width: 1100px;
	width: 100%;
	margin:auto;
}

.shadow-dark{
	-webkit-box-shadow: 0 0 20px rgba(48,46,77,0.15);
	box-shadow: 0 0 20px rgba(48,46,77,0.15);
}
.btn{
	font-size: 16px;
	font-family: 'Rubik', sans-serif;
	font-weight: 500;
	padding:12px 35px;
	color: #ffffff;
	border-radius:40px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: inline-block;
	white-space: nowrap;
	border:none;
	cursor: pointer;
}
.btn:hover{
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.hidden{
	display: none!important;
}

/* Preloader */
.preloader{
	background-color: #222222;
	position: fixed;
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	z-index: 150;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
.preloader.opacity-0{
	opacity:0;
}

.preloader .loader{
	height: 40px;
	width: 40px;
	/*border:4px solid #e3e3e3;*/
	border:4px solid var(--skin-color);
	border-radius: 50%;
	border-top:4px solid transparent;
	border-bottom:4px solid transparent;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
@-webkit-keyframes spin{
	0%{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%{
	-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spin{
	0%{
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%{
	-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* Aside */
.aside{
	width: 270px;
	background-color: #fdf9ff;
	/*background-color: #cc4b2c;*/
	position: fixed;
	height: 100%;
	left:0;
	top:0;
	z-index: 11;
	border-right:1px solid #e8dfec;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.aside .aside-inner{
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    overflow-y: auto;
}
.aside .logo{
	padding:30px 0;
}
.aside .logo a{
	font-size: 40px;
	color:#302e4d;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	text-decoration: none;
	display:inline-block;
	position: relative;
	padding:0 10px;
	line-height: 50px;
}
.aside .logo a::before{
 content: '';
 height: 20px;
 width: 20px;
 position: absolute;
 top:0;	
 left:0;
}
.aside .logo a::after{
 content: '';
 height: 20px;
 width: 20px;
 position: absolute;
 bottom:0;	
 right:0;
}
.aside .nav-toggler{
	height: 40px;
	width: 45px;
	border:1px solid #d4d4e3;
	cursor: pointer;
	position: fixed;
	left:300px;
	top:20px;
	z-index: 11;
	border-radius: 5px;
	background-color: #fdf9ff;
	/*display: -ms-flexbox;
	display: flex;*/
	display: none;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.aside .nav-toggler span{
	height: 2px;
	width: 18px;
	display: inline-block;
	position: relative;
}
.aside .nav-toggler.open span{
	background-color: transparent;
}
.aside .nav-toggler span::before{
	content: '';
	height: 2px;
	width: 18px;
	position: absolute;
	top:-6px;
	left:0;
}
.aside .nav-toggler.open span::before{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top:0px;
}
.aside .nav-toggler span::after{
	content: '';
	height: 2px;
	width: 18px;
	position: absolute;
	top:6px;
	left:0;
}
.aside .nav-toggler.open span::after{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top:0px;
}
.aside .nav{
	list-style: none;
	margin:80px 0;
	padding:0;
}
.aside .nav li{
	display:block;
}
.aside .nav li a{
	font-size: 16px;
	font-weight: 600;
	color:#302e4d;
	text-decoration: none;
	line-height: 45px;
	display: block;
	border-bottom:1px solid #e8dfec;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.aside .nav li a:not(.active):hover{
	padding-left: 5px;
}
.aside .nav li a .fa{
	margin-right: 5px;
}
.aside .copyright-text{
	font-size: 13px;
	color: var(--skin-color);
}

/* Home */
.home{
	display:-ms-flexbox;
	display: flex;
   /* background: url("../images/adireddyk-bg.jpg") no-repeat center;*/
	height: 100vh;
	width: 100%;
 /*   color: #fff; */
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
}
.home .intro img{ 
 height: 200px;
 width: 200px;
 border-radius: 50%;
 display: inline-block;
 border:5px solid #ffffff;
}
.home .intro{
	text-align: center;
}
.home .intro h1{
	font-size: 30px;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	margin:20px 0 5px;
}
.home .intro p{
	font-size: 16px;
	font-weight: 500;
	margin:0;
	line-height: 22px;
}
.home .intro .social-links{
	margin-top: 25px;
}
.home .intro .social-links a{
	height: 35px;
	width: 35px;
	display: inline-block;
	text-align: center;
	line-height: 35px;
	color: #ffffff;
	margin:0 15px 5px 0px;
	border-radius: 50%;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.home .intro .social-links a:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/* About Section */
.about .about-content{
	-ms-flex:0 0 100%;
	flex:0 0 100%;
	max-width: 100%;
}
.about .about-content .about-text{
	-ms-flex:0 0 100%;
	flex:0 0 100%;
	max-width: 100%;
}
.about .about-content .about-text h3{
	font-size: 24px;
	margin-bottom:15px;
	font-weight: 700;
	color:#302e4d;
}
.about .about-content .about-text p{
	font-size: 16px;
	line-height: 25px;
	color:#504e70;
	margin:0;
}
.about .about-content .personal-info{
 -ms-flex:0 0 60%;
	flex:0 0 60%;
	max-width: 60%;
	margin-top: 40px;
}
.about .about-content .personal-info .info-item{	
	-ms-flex:0 0 50%;
	flex:0 0 50%;
	max-width: 50%;
}
.about .about-content .personal-info .info-item p{
	font-weight: 600;
	padding:10px 0;
	font-size: 16px;
	color:#302e4d;
	margin:0;
	border-bottom:1px solid #e8dfec;
}
.about .about-content .personal-info .info-item p span{
	font-weight: 400;
	color:#504e70;
	margin-left: 4px;
	display: inline-block;
}
.about .about-content .personal-info {
	margin-top: 30px;
}
.about .about-content .personal-info{
	margin-right: 15px;
	margin-top: 10px;
}
.about .img-box{
	max-width: 400px;
	display: block;
	margin:auto;
	border-radius: 50%;
	padding: 15px;
	position: absolute;
    right: 20%;
 }
 .about .img-box img{
	width: 100%;
	border:10px solid transparent;
 }
 .about .about-img .img-box{
	padding: 15px;
	border-radius: 5px;
 }
 .about .about-img .img-box img{
	width: 100%;
	border:10px solid transparent;
	border-radius: 5px;
 }
 .about .about-img{
	flex:0 0 40%;
	max-width: 40%;
	padding:0 15px;
 }
 .about .about-img:hover .img-box img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
 .about .about-img{
	margin-top:20px;
	text-align: center;
 }
 .about .about-img{
	display: inline-block;
	height: 40px;
	width: 40px;
	font-size: 16px;
	text-align: center;
	color: var(--text-black-600);
	margin:0 4px;
	border-radius: 50%;
	transition: all 0.3s ease;
 }
 .about .personal-info{
	flex:0 0 60%;
	max-width: 60%;
	padding:0 15px;
 }
 .about .personal-info p{
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 15px;
	color: var(--text-black-600);
 }
 .about .about-info span{
	font-weight: 600;
 }
 .about .personal-info .btn-1{
	margin:30px 20px 0 0;
 }

/* Education Section */ 
 .education .myeducation,
 .experience .myexperience,
 .skills .myskills {
   padding-bottom:80px;
}
.education .timeline,
.experience .timeline,
.skills .timeline{
   flex:0 0 100%;
   max-width: 100%;
   position: relative;
}
.education .timeline:before,
.experience .timeline:before,
.skills .timeline:before{
   content: '';
   width: 1px;
   height: 100%;
   left: 50%;
   top:0;
   background-color: var(--bg-black-100);
   position: absolute;
}
.education .timeline .timeline-item,
.experience .timeline .timeline-item,
.skills .timeline .timeline-item{
   flex:0 0 100%;
   max-width: 100%;
   padding:0 15px;
}
.education .timeline .timeline-item:nth-child(odd),
.experience .timeline .timeline-item:nth-child(odd),
.skills .timeline .timeline-item:nth-child(odd){
   padding-right: calc(50% + 50px);
   text-align: right;
}
.education .timeline .timeline-item:nth-child(even),
.experience .timeline .timeline-item:nth-child(even),
.skills .timeline .timeline-item:nth-child(even){
   padding-left: calc(50% + 50px);
}
.education .timeline .timeline-item-inner,
.experience .timeline .timeline-item-inner,
.skills .timeline .timeline-item-inner{
   padding: 30px;
   border-radius: 5px;
   position: relative;
}
.education .timeline .timeline-item-inner:before,
.experience .timeline .timeline-item-inner:before,
.skills .timeline .timeline-item-inner:before{
   content: '';
   position: absolute;
   width: 30px;
   height: 1px;
   background-color: var(--bg-black-100);
   top:37px;
   z-index: -1;
}
.education .timeline .timeline-item:nth-child(odd) .timeline-item-inner:before,
.experience .timeline .timeline-item:nth-child(odd) .timeline-item-inner:before,
.skills .timeline .timeline-item:nth-child(odd) .timeline-item-inner:before{
   right: -30px;
}
.education .timeline .timeline-item:nth-child(even) .timeline-item-inner:before,
.experience .timeline .timeline-item:nth-child(even) .timeline-item-inner:before,
.skills .timeline .timeline-item:nth-child(even) .timeline-item-inner:before{
   left: -30px;
}
.education .timeline .timeline-item-inner .icon,
.experience .timeline .timeline-item-inner .icon,
.skills .timeline .timeline-item-inner .icon{
   height: 40px;
   width: 40px;
   background-color: var(--bg-black-50);
   text-align: center;
   border:1px solid var(--bg-black-100);
   line-height: 40px;
   border-radius: 50%;
   font-size: 16px;
   color: var(--skin-color);
   position: absolute;
   top:18px;
}
.education .timeline .timeline-item:nth-child(odd) .icon,
.experience .timeline .timeline-item:nth-child(odd) .icon,
.skills .timeline .timeline-item:nth-child(odd) .icon{
   right: -70px;
}
.education .timeline .timeline-item:nth-child(even) .icon,
.experience .timeline .timeline-item:nth-child(even) .icon,
.skills .timeline .timeline-item:nth-child(even) .icon{
   left: -70px;
}
.education .timeline .timeline-item-inner span,
.experience .timeline .timeline-item-inner span,
.skills .timeline .timeline-item-inner span{
   font-weight: 500;
   color: var(--skin-color);
   display: block;
   margin:0 0 10px;
   text-transform: capitalize;
}
.education .timeline .timeline-item-inner h3,
.experience .timeline .timeline-item-inner h3,
.skills .timeline .timeline-item-inner h3{
   font-size: 20px;
   color: var(--text-black-700);
   font-weight: 600;
   margin:0 0 5px;
   text-transform: capitalize;
}
.education .timeline .timeline-item-inner h4,
.experience .timeline .timeline-item-inner h4,
.skills .timeline .timeline-item-inner h4{
   font-size: 16px;
   font-style: italic;
   color: var(--text-black-600);
   margin:0;
}
.education .timeline .timeline-item-inner p,
.experience .timeline .timeline-item-inner p,
.skills .timeline .timeline-item-inner p{
   font-size: 16px;
   color: var(--text-black-600);
   line-height: 26px;
   margin:15px 0 0;
}

/* Blog Section */
.blog .container{
	padding-bottom:40px;
}
.blog .blog-item{
	-ms-flex:0 0 33.33%;
	flex:0 0 33.33%;
	max-width: 33.33%;
	margin-bottom: 30px;
	display: flex;
}
.blog .blog-item-inner{
	border-radius: 10px;
	overflow: hidden;
	border:1px solid #d4d4e3;
	width: 100%;
	background-color: #fdf9ff;
}
.blog .blog-item-inner .blog-img{
	position: relative;
	overflow: hidden;
}
.blog .blog-item-inner .blog-img img{
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.blog .blog-item-inner:hover .blog-img img{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.blog .blog-item-inner .blog-img .blog-date{
	position: absolute;
	padding:4px 10px;
	border-radius: 5px;
	color:#ffffff;
	font-weight: 600;
	font-size: 14px;
	left:15px;
	bottom: 15px;
}
.blog .blog-item-inner .blog-info{
	padding: 30px 15px;
}
.blog .blog-item-inner .blog-info .blog-title{
	font-size: 18px;
	font-weight: 700;
	color:#302e4d;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.blog .blog-item-inner .blog-info .blog-description{
	font-size: 16px;
	line-height: 25px;
	color:#504e70;
	font-weight: 400;
	margin-bottom: 15px;
}
.blog .blog-item-inner .blog-info .blog-tags{
	font-size: 16px;
	line-height: 25px;
	color:#504e70;
	font-weight: 400;
	font-size: 14px;
	text-transform: capitalize;
}
.blog .blog-item-inner .blog-info .blog-tags a{
	text-decoration: none;
	font-weight: 600;
}

/* Contact Section */
.contact .contact-info-item{
 -ms-flex:0 0 33.33%;
 flex:0 0 33.33%;
 max-width: 33.33%;
 text-align: center;
 margin-bottom: 40px;
}
.contact .contact-info-item .icon{
	display: inline-block;
}
.contact .contact-info-item .icon .fa{
	font-size: 40px;
}
.contact .contact-info-item h4{
	font-size: 18px;
	font-weight: 700;
	color:#302e4d;
	text-transform: capitalize;
	margin:15px 0 5px;
}
.contact .contact-info-item p{
	font-size: 16px;
	line-height: 25px;
	color:#504e70;
	margin:0;
	font-weight: 400;
}
/*.contact-info-item{

}*/
.contact .contact-form{
	-ms-flex:0 0 100%;
	flex:0 0 100%;
	max-width: 100%;
}
.contact .contact-form .col-6{
 -ms-flex:0 0 50%;
 flex:0 0 50%;
 max-width: 50%;
}
.contact .contact-form .col-12{
-ms-flex:0 0 100%;
 flex:0 0 100%;
 max-width: 100%;
}
.contact .contact-form .form-item{
	margin-bottom: 30px;
}
.contact .contact-form .form-item .form-control{
	width: 100%;
	height: 50px;
	border-radius: 25px;
	border:1px solid #d4d4e3;
	padding: 10px 25px;
	font-size: 16px;
	color:#504e70;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.contact .contact-form .form-item .form-control:focus{
	-webkit-box-shadow: 0 0 20px rgba(48,46,77,0.15);
	box-shadow: 0 0 20px rgba(48,46,77,0.15);
}
.contact .contact-form .form-item textarea.form-control{
	height: 140px;
}
.contact .contact-form .btn{
	height: 50px;
	padding:0 50px;
}

/* Dark Body */
body.dark .section{
	background-color: #151515;
}
body.dark .contact .contact-form .form-item .form-control,
body.dark .blog .blog-item-inner .blog-info,
body.dark .service .service-item .service-item-inner,
body.dark .about .about-content .timeline,
body.dark .aside{
	background-color: #222222;
}
body.dark .contact .contact-info-item h4,
body.dark .blog .blog-item-inner .blog-info .blog-title,
body.dark .about .about-content .timeline .timeline-title,
body.dark .about .about-content h3.title,
body.dark .about .about-content .skills .skill-item h5,
body.dark .about .about-content .personal-info .info-item p,
body.dark .about .about-content .about-text h3,
body.dark .section-title h2,
body.dark .home .intro h1,
body.dark .aside .logo a,
body.dark .aside .nav li a{
	color:#ffffff;
}
body.dark .contact .contact-form .form-item .form-control,
body.dark .contact .contact-info-item p,
body.dark .blog .blog-item-inner .blog-info .blog-tags,
body.dark .blog .blog-item-inner .blog-info .blog-description,
body.dark .about .about-content .timeline .timeline-text,
body.dark .about .about-content .timeline .timeline-date,
body.dark .about .about-content .skills .skill-item .skill-percent,
body.dark .about .about-content .personal-info .info-item p span,
body.dark .about .about-content .about-text p,
body.dark .home .intro p{
 color:#e9e9e9;
}
body.dark .aside,
body.dark .contact .contact-form .form-item .form-control,
body.dark .blog .blog-item-inner,
body.dark .service .service-item .service-item-inner,
body.dark .about .about-content .timeline,
body.dark .about .about-content .personal-info .info-item p,
body.dark .aside .nav li a{
	border-color: #393939;
}
body.dark .shadow-dark{
	-webkit-box-shadow: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 1199px){
	.section .container{
		padding-top: 70px;
	}
	.aside .nav-toggler{
		display: -ms-flexbox;
		display: flex;
		left:30px;
	}
	.aside .nav-toggler.open{
	  left:200px;	
	}
	.aside{
      left: -270px;
	}
	.aside.open{
	 left:0px;	
	}
	.section{
		left: 0;
	}
	.section.open{
	  left: 270px;	
	}
	.about .about-content .personal-info .info-item p span{
		display:block;
		margin-left:0;
	}
}
@media (max-width: 991px){
.blog .blog-item{
-ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
}
@media (max-width: 767px){
	.contact .contact-form .col-6,
	.blog .blog-item,
	.about .about-content .experience,
	.education .education-content .edu,
	.about .about-content .skills,
	.about .about-content .personal-info{
	 -ms-flex: 0 0 100%;
     flex: 0 0 100%;
     max-width: 100%;
	}
}
@media (max-width: 575px){
	.contact .contact-info-item{
	  -ms-flex: 0 0 100%;
     flex: 0 0 100%;
     max-width: 100%;	
	}
}
@media screen and (max-width: 480px) {

	.social-panel-container.visible {
		transform: translateX(0px);
	}
	
	.floating-btn {
		right: 10px;
	}
}
#phonenumber{
	color: #ff0000;
}

/* Get In Touch Pannel */
.checkbox {
	opacity: 0;
	position: absolute;
}
.label {
	background-color: #111;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px;
	position: relative;
	height: 26px;
	width: 50px;
	transform: scale(1.5);
}
.label .ball {
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	height: 22px;
	width: 22px;
	transform: translateX(0px);
	transition: transform 0.2s linear;
}
.checkbox:checked + .label .ball {
	transform: translateX(24px);
}
.dtheme {
	color: #f1c40f;
}
.ltheme {
	color: #f39c12;
}
.dark-light-theme {
	margin: 0 0 0 10px;
    padding: 7px 0px 0px 0px;
}

/* SOCIAL PANEL CSS */
.social-panel-container {
	position: fixed;
	right: 0;
	bottom: 80px;
	transform: translateX(100%);
	transition: transform 0.4s ease-in-out;
}
.social-panel-container.visible {
	transform: translateX(-10px);
}

.social-panel {	
	background-color: #f2f2fc;
	border-radius: 16px;
	box-shadow: 0 16px 31px -17px rgba(0,31,97,0.6);
	border: 5px solid #001F61;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: 'Muli';
	position: relative;
	height: 125px;	
	width: 300px;
	max-width: calc(100% - 10px);
}
.social-panel button.close-btn {
	border: 0;
	color: #97A5CE;
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	top: 5px;
	right: 5px;
}
.social-panel button.close-btn:focus {
	outline: none;
}
.social-panel p {
	background-color: #001F61;
	border-radius: 0 0 10px 10px;
	color: #fff;
	font-size: 14px;
	line-height: 18px;
	padding: 2px 17px 6px;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 0;
	transform: translateX(-50%);
	text-align: center;
	width: 235px;
}
.social-panel p i {
	margin: 0 5px;
}
.social-panel p a {
	color: #FF7500;
	text-decoration: none;
}
.social-panel h4 {
	margin: 35px 0 10px 0;
	color: #001F61;	
	font-family: 'Muli';	
	font-size: 14px;	
	line-height: 18px;
	text-transform: uppercase;
}
.social-panel ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.social-panel ul li {
	margin: 0px;
}
.social-panel ul li a {
	/*border: 1px solid #DCE1F2;
	border-radius: 50%;
	color: var(--skin-color);
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	text-decoration: none;*/
	height: 35px;
	width: 35px;
	display: inline-block;
	text-align: center;
	line-height: 35px;
	color: #ffffff;;
	background-color: var(--skin-color);;
	margin:0 5px;
	border-radius: 50%;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.social-panel ul li a:hover {
	border-color: var(--skin-color);
	box-shadow: var(--skin-color);
}
.floating-btn {
	border-radius: 26.5px;
	background-color: #001F61;
	border: 1px solid #001F61;
	box-shadow: 0 16px 22px -17px #03153B;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 20px;
	padding: 12px 20px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
}
.floating-btn:hover {
	background-color: #ffffff;
	color: #001F61;
}
.floating-btn:focus {
	outline: none;
}
.floating-text {
	background-color: #001F61;
	border-radius: 10px 10px 0 0;
	color: #fff;
	font-family: 'Muli';
	padding: 7px 15px;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 998;
}
.floating-text a {
	color: #FF7500;
	text-decoration: none;
}
