@media (min-width: 992px){
	.allbtns .container, .container-lg, .container-md, .container-sm {
    	max-width: 960px;
	}
}

@media (max-width: 992px){
	.title-tag{
		text-align: center;
	}
}

.title-tag{
	font-size: 26px;
	text-decoration: underline;
}

pre::-webkit-scrollbar{
	width: 0;
}


/* ================================================================================================= */
/* THEME PAGE  */
/* ================================================================================================= */

/* 2 */

.btn2 .thebtn{
	display: inline-block;
	position: relative;
	color: black;
	background: #eee;
	font-weight: 600;
	text-decoration: none;
	padding: 6px 30px;
	transition: .3s;
}

.btn2 .thebtn::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	border: 3px solid #fd3f30;
	border-color: #fd3f30 transparent transparent #fd3f30;
	transition: .3s;
}

.btn2 .thebtn::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 15px;
	height: 15px;
	border: 3px solid #fd3f30;
	border-color: transparent #fd3f30 #fd3f30 transparent;
	transition: .3s;
}


.btn2 .thebtn:hover{
	color: white;
	background: #000;
}

.btn2 .thebtn:hover::before, .btn2 .thebtn:hover::after{
	width: 100%;
	height: 100%;
}


/* 3 */

.btn3 .thebtn{
	display: inline-block;
	position: relative;
	color: black;
	background: #ddd;
	font-weight: 600;
	text-decoration: none;
	padding: 6px 30px;
	transition: .3s;
}

.btn3 .thebtn::before, .btn3 .thebtn::after{
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	transform: skew(-20deg);
	transition: .3s;
	opacity: 0;
	z-index: -1;
}

.btn3 .thebtn::before{
	top: 0;
	left: 0;
	background: #000;
}

.btn3 .thebtn::after{
	bottom: 0;
	right: 0;
	background: #fd3f30;
}


.btn3 .thebtn:hover{
	color: white;
	background: transparent;
	transform: skew(-10deg);
}

.btn3 .thebtn:hover::before, .btn3 .thebtn:hover::after{
	opacity: 1;
}



/* 4 */

.btn4 .thebtn{
	display: inline-block;
	position: relative;
	color: white;
	background: #000;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #fd3f30;
	padding: 6px 40px;
	transition: .3s;
}

.btn4 .thebtn span{
	position: absolute;
	right: 40px;
	opacity: 0;
}

.btn4 .thebtn:hover{
   color: white;
   padding: 6px 45px 6px 35px;
}

.btn4 .thebtn:hover span{
	right: 30px;
	opacity: 1;
}


/* 5 */

.btn5 .thebtn {
	display: inline-block;
	position: relative;
	background-color: #000;
	border: none;
	font-size: 20px;
	color: #FFFFFF;
	padding: 8px 25px;
	text-align: center;
	transition-duration: 0.8s;
	text-decoration: none;
	overflow: hidden;
	cursor: pointer;
}

.btn5 .thebtn::after {
  	content: "";
  	background: #fd3f30;
  	display: block;
  	position: absolute;
  	padding-top: 300%;
  	padding-left: 350%;
  	margin-left: -30px !important;
  	margin-top: -120%;
  	opacity: 0;
  	transition: all 0.8s
}

.btn5 .thebtn:active::after {
	padding: 0;
	margin: 0;
	opacity: 1;
	transition: 0s
}



/* 6 */

.btn6 #personal {
    color: #fd3f30;
    text-decoration: none;
    position: absolute;
    bottom: 15px;
    right: 2%;
}

.btn6 .spot {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	padding: 6px 0;
}

.btn6 .svg-wrapper {
    margin-top: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 40px;
    display: inline-block;
    border-radius: 3px;
    margin: auto;
}

.btn6 #shape {
    stroke-width: 3px;
    fill: transparent;
    stroke: #fd3f30;
    stroke-dasharray: 50 0;
    stroke-dashoffset: 0;
    transition: 1s all ease;
}

.btn6 #text {
    margin-top: -35px;
    text-align: center;
}

.btn6 #text a {
    width: 100%;
    display: block;
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}

.btn6 .svg-wrapper:hover #shape {
    stroke-dasharray: 85 400;
    stroke-width: 6px;
    stroke-dashoffset: -220;
    stroke: #fd3f30;
}