* {
	outline: none !important;
}
:root {
    --primary-bg-color: #1c1c1c;
    --primary-bg-rgb: 28, 28, 28;
    --primary-text: #FFF;
    --primary-text-offwhite: #F9F8F6;
    --primary-text-smokeWhite: #F5F5F5;
    --highlight-color: #F8B000;
    --highlight-color-rgba: 248, 176, 0;
    --opacity-color: 110, 110, 110;
    --opacity-color-snd: 255, 255, 255;
    --primary-bar-color: #030418;
    --colorgrey :#8C8C8C;
    --colordeepgray :#4F4F4E;
    --colorborder: 43, 43, 43;
    --hederbordercolor: #5D5D5D;
    --icon-bg:245, 245, 245;
    --social-border:79, 79, 78;
    --opacity-color-number:249, 248, 246;
    --pop-up-bg:#343434;
    --color-btn: #E8BC50;
    --color-box: 0 , 0 , 0;
    --color-detail-border: #EAEAEA;
    --color-detali-border2: 47, 55, 51;
    --color-wp: #66C41F;
    --color-wp-hover: #51BD00;
    --team-bg:#27272B;
}
a {
	text-decoration: none;
	color: var(--primary-text);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: var(--highlight-color);
}
ul {
	padding: 0;
	list-style-type: none;
	margin: 0px;
}
:focus {
    outline: none !important;
}
section {
	width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}
h1{
    color: var(--primary-text);
    font-family: 'RockwellNova-Bold';
    font-size: 7rem;
    line-height: 90px;
    letter-spacing: 3.5px;
}
h1 strong {
    color: var(--highlight-color);
    font-weight: normal;
}
h2{
    color: var(--primary-text);
    font-family: 'RockwellNova-Bold';
    font-size: 4rem;
    line-height: 55px;
}
h2 strong {
    color: var(--highlight-color);
    font-weight: normal;
}
h3{
    color: var(--primary-text);
    font-family: 'RockwellNova-Bold';
    font-size: 2.8rem;
    line-height: 43px; 
}
h3 strong {
    color: var(--highlight-color);
    font-weight: normal;
}
h4{
    color: var(--primary-text);
    font-family: 'RockwellNova-Regular';
    font-size: 2.4rem;
    line-height: 32px;
    letter-spacing: 1.2px;
}
h5{
    color: var(--primary-text);
    font-family: 'LamaSans-SemiBold';
    font-size: 1.8rem;
    line-height: 28px;
}
h6{
    color: var(--primary-text);
    font-family: 'RockwellNova-Regular';
    font-size: 1.6rem;
    line-height: 118%;
}
p{
    color: var(--primary-text-offwhite);
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
}
li {
    color: var(--primary-text-offwhite);
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0.32px;
    position: relative;
    padding-left: 20px;
}
li::after {
    position: absolute;
    content: "";
    background-color: var(--primary-text-offwhite);
    background-size: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    left: 0;
    top: 8px;
}
.common-btn {
    color: var(--primary-text);
    font-family: 'LamaSans-SemiBold';
    font-size: 1.6rem;
    line-height: 24px;
    padding: 11px 18px;
    display: inline-block;
    border: 1px solid var(--primary-text);
	border-radius: 100px;
    background: transparent;
    position: relative;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    overflow: hidden;
    transition: transform 0.2s ease, color 0.2s ease;
    will-change: transform;
}
.common-btn.leave-transition {
    transition: transform 0.4s ease;
}
.common-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--highlight-color);
    transform: translateY(100%);
    border-radius: 50px;
    z-index: 0;
    pointer-events: none;
}
.common-btn:hover::after {
    animation: slide-in 0.4s forwards;
}
.common-btn:not(:hover)::after {
    animation: slide-out 0.4s forwards;
}
.common-btn strong {
    font-weight: normal;
    z-index: 1;
    position: relative;
}
.common-btn:hover {
    color: var(--primary-bg-color);
    border-color: var(--highlight-color);
}
@keyframes slide-in {
    0% {
        transform: translateY(100%);
        border-radius: 50px;
    }
    100% {
        transform: translateY(0%);
        border-radius: 0%;
    }
}
@keyframes slide-out {
    0% {
        transform: translateY(0%);
        border-radius: 0%;
    }
    100% {
        transform: translateY(-100%);
        border-radius: 50px;
    }
}
.common-arrow {
    background-color: var(--primary-text-smokeWhite);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    margin: 0;
}
.common-arrow:hover{
    background-color: var(--highlight-color);
}
.common-arrow:after {
	display: none;
}
.common-arrow img {
	width: 14px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}