* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #fff;
   	transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #1c1c1c;
}
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: #FFF;
    font-family: 'Lora-Medium';
    font-size: 4.8rem;
    line-height: 56px;
    letter-spacing: 2.4px;
}
h2 {
    color: #FFF;
    font-family: 'Lora-Medium';
    font-size: 3.2rem;
    line-height: normal;
    letter-spacing: 1.6px;
}
h2 strong {
    color: #1c1c1c;
    font-weight: normal;
}
h4 {
    color: #FFF;
    font-family: 'Lora-Medium';
    font-size: 2.4rem;
    line-height: 44px;
}
h5 {
    color: #FFF;
    font-family: 'Lora-Medium';
    font-size: 2rem;
    line-height: 32px;
}
p {
    color: #FFF;
    font-family: 'Inter-Regular';
    font-size: 1.8rem;
    line-height: 26px;
    margin-bottom: 24px;
}
li {
    color: #1C1C1C;
    font-family: 'Lora-Medium';
    font-size: 2rem;
    line-height: 32px;
    position: relative;
}
.common-btn {
    font-family: 'Inter-Regular';
    position: relative;
    border: 1px solid #fff;
    overflow: hidden;
    background-color: #fff;
    color: #02131F;
    font-size: 1.8rem;
    padding: 11px 32px 11px;
    display: inline-block;
    z-index: 1;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.btn-round {
    border-radius: 50%;
    background-color: #02131F;
    border-color: #02131F;
    position: absolute;
    z-index: -1;
    animation: scale-up 0.9s forwards;
    width: 1px;
    height: 1px;
    pointer-events: none;
}
.btn-round.scale-down {
    animation: scale-down 0.4s forwards;
}
@keyframes scale-up {
    to {
        transform: scale(600);
    }
}
@keyframes scale-down {
    from {
        transform: scale(600);
    }
    to {
        transform: scale(0);
    }
}
.common-btn:hover {
    background-color: #0f1726;
    border-color: #0f1726;
    color: #fff;
}
.white-btn {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.white-btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #0f1726;
}
.white-btn .btn-round {
    background-color: #fff;
}
.border-btn {
    background-color: transparent;
    color: #1C1C1C;
    border-color: #1C1C1C;
}
.border-btn .btn-round:hover {
    background-color: #fff;
    color: #1C1C1C;
}
.common-arrow {
   height: 50px;
    width: 50px;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.common-arrow:hover {
    background-color: #fff;
}
.common-arrow:hover img {
    filter: brightness(1) invert(0);
    -webkit-filter: brightness(1) invert(0);
}
.common-arrow img {
	width: 20px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.common-arrow:after{
	display: none;
}
.common-bg{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

