@font-face {
    font-family: 'Segoe UI Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Segoe UI Regular'), url('../fonts/segoe-ui.woff') format('woff');
}


@font-face {
    font-family: 'Segoe UI Semibold';
    font-style: normal;
    font-weight: normal;
    src: local('seguisb'), url('../fonts/seguisb.woff') format('woff');
}


h1,
h2,
h3,
p {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Staatliches', cursive;

    font-size: 90px;
    font-weight: normal;
    color: #fff;
    line-height: 1em;
}

h1 span.outline-text {
    color: #27D95E;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #27D95E;

    text-stroke: 1.5px #27D95E;
}

h1 span {
    color: #27D95E;
}

h2 {
    font-family: 'Staatliches', cursive;
    font-size: 59px;
    font-weight: normal;
    color: #000;
}

h2 span {
    color: #27D95E;
}

h2 span.outline-text {
    color: #27D95E;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #27D95E;
   
    text-stroke: 1.5px #27D95E;
}

h3 {
    font-family: 'Staatliches', cursive;
    font-size: 27px;
    font-weight: normal;
    color: #000;
}

h4 {
    font-family: 'Segoe UI Semibold';
    font-size: 18px;
    font-weight: normal;
    color: #27D95E;
}

h5 {
    font-family: 'Segoe UI Semibold';
    font-size: 18px;
    font-weight: normal;
    color: #27D95E;
}

p {
    font-family: 'Segoe UI Regular';
    font-size: 15px;
    font-weight: normal;
    color: #A5AAA6;
}

.row-stretched {
    max-width: 1140px;
    margin: 0 auto;
}

.btn-theme {
    font-family: 'Segoe UI Semibold';
    font-size: 17px;
    font-weight: normal;
    color: #fff;
    padding: 10px 18px;
    width: 155px;
    outline: none;
    width: 170px;
    height: 41px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-theme:hover,
.btn-theme:focus {
    outline: none;
    box-shadow: none;
}

.btn__primary {
    background: linear-gradient(235deg, #12C247, #27D95E);
    border-bottom-left-radius: 17px;
    border: 1.5px solid #27D95E;
}

.btn__primary:hover,
.btn__primary:focus {
    color: #fff;
    border: 1.5px solid #1d9040;
    background: #1d9040;
}

.btn__secondary {
    background: transparent;
    border-top-right-radius: 17px;
    border: 1.5px solid #fff;
}


/* button animation */

.btn__secondary {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    position: relative;
    border-top-right-radius: 14px;
    border: 1.5px solid white;
    transition: 0.2s all ease-in-out;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn__secondary:hover {
    border-color: transparent;
    color: #fff;
}

.btn__secondary::before {
    content: '';
  
    position: absolute;
    width: 25%;
    height: 25%;
   
    border-color: transparent;
    border-style: solid;
    border-right-width: 0px;
    border-bottom-width: 1.5px;
    border-left-width: 1.5px;
    border-top-width: 0px;
    bottom: 0;
    left: 0;
    transition: 0.4s all ease-in-out;
}

.btn__secondary:hover::before {
    width: 100%;
    height: 100%;
    border-color: white;
    right: 0;
}

.btn__secondary::after {
    content: '';
    position: absolute;
    width: 25%;
    height: 25%;
    border-top-right-radius: 14px;
    border-color: transparent;
    border-style: solid;
    border-right-width: 1.5px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-width: 1.5px;
    top: 0;
    right: 0;
    transition: 0.4s all ease-in-out;
}

.btn__secondary:hover::after {
    width: 100%;
    height: 100%;
    border-color: white;
    bottom: 0
}


/* navnav */

.btn__nav {
    color: #27D95E;
    border: 1.5px solid #27D95E;
    position: absolute;
    right: 0;
}

.btn__nav:hover {
    color: #27D95E;
}

.btn__nav:hover::before {
    border-color: #27D95E;
}

.btn__nav:hover::after {
    border-color: #27D95E;
}

.btn__chat {
    position: absolute;
    right: 10px;
    width: 20px;
    object-fit: contain;
    display: none;
}


/* section */

.section {
    padding: 4rem 0px;
}

/* Rounded border */
hr.rounded {
  border-top: 8px solid #bbb;
  border-radius: 5px;
}