* {
	outline: none !important;
}
a {
	text-decoration: none;
	color: #FFF;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
a:hover {
	text-decoration: none;
	color: #124D3F;
}
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: 'Epilogue-Black';
    font-size: 8rem;
    line-height: normal;
}
h1 strong{
    font-family: 'Lora-Regular';
    font-weight: normal; 
}
h1 em {
    position: relative;
    z-index: 1;
    font-style: normal;
    display: inline-block;
}
h1 em .round-svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: visible;
}
.round-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke: #124D3F;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.em-animate .round-svg path {
    animation: round-line 1.5s ease-out forwards;
    animation-delay: 0.8s;
}
@keyframes round-line {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}
h2{
    color: #FFF;
    font-family: 'Epilogue-Black';
    font-size: 4.8rem;
    line-height: normal;
    width: max-content;
    position: relative;
}
.underline-svg {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}
.underline-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke: #124D3F;
}
.h2-animate .underline-svg .st-line{
    animation: draw-line 1s ease-out forwards;
    animation-delay: 0.6s;
}
.h2-animate .underline-svg .nd-line{
    animation: draw-line 1s ease-out forwards;
    animation-delay: 1s;
}
@keyframes draw-line {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
h2 strong{
    font-family: 'Lora-Regular';
    font-weight: normal;     
}
h2 em {
    position: relative;
    font-style: normal;
    padding: 8px 5px;
}
h3{
    color: #FFF;
    font-family: 'Epilogue-Black';
    font-size: 3.2rem;
    line-height: normal;
}
h3 strong{
    font-family: 'Lora-Regular';
    font-weight: normal;     
}
h3 em {
    position: relative;
    z-index: 1;
    font-style: normal;
    display: inline-block;
}
h3 em .round-svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: visible;
}
h4{
    color: #FFF;
    font-family: 'Epilogue-Medium';
    font-size: 2.4rem;
    line-height: normal;
}
h6{
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: normal;
}
p{
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 20px;
}
li {
    color: #FFF;
    font-family: 'LamaSans-Regular';
    font-size: 1.6rem;
    line-height: 24px;
    position: relative;
    padding-left: 34px;
}
li::after {
    position: absolute;
    content: "";
    background-image: url(../images/li-icon.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    width: 26px;
    height: 26px;
    left: 0;
    top: 0;
}
.common-btn {
    color: #FFF;
    font-family: 'LamaSans-Medium';
    font-size: 1.6rem;
    line-height: 28px;
    padding: 9px 28px;
    display: inline-block;
    border: 1px solid #124D3F;
	border-radius: 100px;
    background: transparent;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    position: relative;
    overflow: visible;
}
.common-btn svg {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    pointer-events: none;
}
.common-btn svg rect {
    fill: none;
    stroke: #fff;
    stroke-width:1;
}
.common-btn:hover {
    color: #FFF;
    background: #124D3F;
    border-color: #124D3F;
}
.common-arrow {
    background-color: transparent;
    border: 1px solid #124D3F;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0;
    overflow: visible;
}
.common-arrow svg {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    pointer-events: none;
}
.common-arrow svg rect {
    fill: none;
    stroke: #fff;
    stroke-width:1;
}
.common-arrow img {
    position: relative;
    z-index: 2;
}
.common-arrow::after {
    display: none;
}
.common-arrow:hover img{
    filter: brightness(0) invert(1);
}
.common-arrow img {
	width: 12px;
}
.common-bg {
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}