@charset "utf-8";

/* CSS Document */
@font-face {
    font-family: 'Sofia Pro';
    src: url('SofiaProRegular.woff2') format('woff2'),
        url('SofiaProRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Goldplay';
    src: url('Goldplay-Regular.woff2') format('woff2'),
        url('Goldplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Goldplay';
    src: url('Goldplay-Light.woff2') format('woff2'),
        url('Goldplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Goldplay';
    src: url('Goldplay-Bold.woff2') format('woff2'),
        url('Goldplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Goldplay';
    src: url('Goldplay-Medium.woff2') format('woff2'),
        url('Goldplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Goldplay';
    src: url('Goldplay-SemiBold.woff2') format('woff2'),
        url('Goldplay-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/*==================-start-footer===============*/
footer {
    padding: 45px 0;
    min-width: none;
    border-top: 1px solid #c6c6c6;
}

ul.ftrlist {
    text-align: center;
    padding: 0 0 12px 0
}

ul.ftrlist li {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #2d2d2d;
    border-right: 1px solid #2d2d2d;
    padding: 0 12px 0 8px;
}

ul.ftrlist li:last-child {
    border-right: none;
}

ul.ftrlist li a {
    color: #2d2d2d;
}

.ftrtxt,
.ftrtxt2 {
    padding: 16px 0 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #2d2d2d;
}

.ftrtxt2 {
    padding: 12px;
    font-size: 14px;
    line-height: 18px;
    border: 1px solid;
}

/*==================button animation=======================*/
.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.9;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        opacity: 0.7;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0.7;
    }
}