/*----------------------------------------------
*
* [Default Stylesheet]
*
* Theme    : Softbit - Technology & IT Solutions WordPress Theme
* Version  : 1.0
* Author   : Themeland
* Support  : hridoy1272@gmail.com
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root
2. Button

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
--primary-font: 'Lora', serif;
--secondary-font: 'Outfit', sans-serif;

--h1-size: 6rem;
--h1-weight: 700;

--h2-size: 3rem;
--h2-weight: 600;

--p-size: 1rem;
--p-weight: 400;

--header-bg-color: #121117;
--nav-brand-height: 50px;
--nav-item-color: #f5f5f5;
--hero-bg-color: #121117;

--primary-color: #213FD4;
--secondary-color: #27A4B0;

--white-color: #f9f9f9;
--black-color: #040402;
--dark-grey-color: #191919;

--primary-t-color: #222222;
--secondary-t-color: #f5f5f5;
--primary-p-color: #333333;
--secondary-p-color: #82838c;
--primary-b-color: #f5f5f5;
--primary-l-color: rgba(0, 0, 0, 0.25);
--secondary-l-color: rgba(255, 255, 255, 0.25);

--box-shadow-color: rgba(9, 31, 67, 0.06);

--valid-color: #007a4d;
--invalid-color: #e34f4f;

--primary-bg-color: #ffffff;
--primary-bg-color-2: #EDF3F8;
--primary-bg-color-3: #e9ecef;

--secondary-bg-color: #16151a;
--secondary-bg-color-2: #111111;
--secondary-bg-color-3: #191919;

--card-bg-color: #f4f3ff;

--footer-bg-color: #121117;
}

/* #endregion Root */

/*----------------------------------------------
2. Button
----------------------------------------------*/

/* #region Button */

.btn {
	position: relative;
	z-index: 1;
	padding: 16px 34px;
	border: 0 none;
	border-radius: 0;
	background: var(--primary-color);
	color: var(--white-color);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	outline: 0 none;
	cursor: pointer;
}

.btn:hover,
.btn:focus,
.btn:active {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	color: var(--white-color);
}

.btn-smaller {
	padding: 12px 18px;
	font-size: 0.9rem;
}

.btn:hover .btn-text {
	-webkit-animation: MoveScaleUpInitial 0.25s forwards, MoveScaleUpEnd 0.25s forwards 0.25s;
	animation: MoveScaleUpInitial 0.25s forwards, MoveScaleUpEnd 0.25s forwards 0.25s;
}

.content-btn {
	display: inline-block;
	padding: 0 10px;
	color: var(--primary-t-color);
	overflow: hidden;
}

.content-btn .btn-text {
	display: inline-block;
	font-weight: 500;
	color: var(--primary-t-color);
	margin-right: 10px;
	-webkit-transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
	transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}

.content-btn svg {
	width: 26px;
}

.content-btn svg path {
	fill: var(--primary-t-color);
	-webkit-transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
	transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}

.content-btn:hover {
	color: var(--primary-color);
}

.content-btn:hover .text {
	color: var(--primary-color);
}

.content-btn:hover svg {
	-webkit-animation: MoveScaleLeftInitial 0.3s forwards, MoveScaleLeftEnd 0.25s forwards 0.25s;
	animation: MoveScaleLeftInitial 0.3s forwards, MoveScaleLeftEnd 0.25s forwards 0.25s;
}

.content-btn:hover svg path {
	fill: var(--primary-color);
}

.primary-button,
.primary-button:visited,
.primary-button:active {
	position: relative;
	z-index: 2;
	padding: 10px 25px;
	border-radius: 2px;
	background-color: var(--primary-color);
	color: var(--primary-b-color);
	font-weight: 400;
}

.primary-button:hover,
.primary-button:focus {
	background-color: var(--primary-color);
	background-image: -webkit-linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
	background-image: linear-gradient(45deg, var(--secondary-color) 15%, var(--primary-color) 65%);
	color: var(--primary-b-color);
}

/* #endregion Button */
