body,
html {
    padding: 0;
    margin: 0;
    height: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
    margin: 5px 0px;
    padding: 5px 0px;
    line-height: 1.4;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    line-height: 1.4;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    line-height: 1.4;
}



/******************************/


.primery_cta {
    margin: 0;
    display: flex;
    place-items: center;
}

.primery_cta a {
    position: relative;
    padding: 15px 20px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font: 700 20px consolas;
    overflow: hidden;
}

.primery_cta a span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #ff6a00);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.primery_cta a span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #ffffff, #ff6a00);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.primery_cta a span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #ffffff, #ff6a00);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.primery_cta a span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to top, #ffffff, #ff6a00);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}



.btn {
    display: inline-block;
    color: #ff6a00;
    padding: 32px;
    position: relative;
    letter-spacing: 1px;
}

.btn__circle,
.btn__text,
.btn__white-circle {
    position: absolute;
}

.btn__circle {
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 100%;
    width: 100%;
    box-shadow: 0 0 1px 1px #ff6a00;
    transition: 0.3s linear;
}

.btn__white-circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background: #ff6a00;
    display: flex;
    transition: 0.3s ease-in-out;
}

.btn__white-circle svg {
    width: 24px;
    height: 24px;
    margin: auto;
}

.btn__text {
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 2;
    padding: 24px 8px;
    transition: 0.3s linear;
}

.btn:hover .btn__circle {
    transform: scale(0);
}

.btn:hover .btn__white-circle {
    transform: translate(-50%, -50%) scale(1);
}

.btn:hover .btn__text {
    transform: translate(40px, -50%);
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
}








.btn-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 10px auto 35px;
}

.btn2 {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 25px 15px;
    min-width: 150px;
}

.btn2 span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    transition: 0.3s;
}


/*--- btn-5 ---*/
.btn-5 span {
    color: rgb(28, 31, 30);
    border: 2px solid rgb(249, 211, 27);
    transition: 0.2s;
}

.btn-5 span:hover {
    background-color: rgb(245, 245, 245);
}

/* 21. hover-border-11 */
.btn2.hover-border-11::before,
.btn2.hover-border-11::after {
    width: 100%;
    height: 2px;
    background-color: rgb(54, 56, 55);
    z-index: 2;
    transition: 0.35s;
}

.btn2.hover-border-11::before {
    top: 0;
    right: 0;
}

.btn2.hover-border-11::after {
    bottom: 0;
    left: 0;
}

.btn2.hover-border-11:hover::before,
.btn2.hover-border-11:hover::after {
    width: 0%;
    transition: 0.2s 0.2s ease-out;
}

.btn2.hover-border-11 span::before,
.btn2.hover-border-11 span::after {
    width: 2px;
    height: 100%;
    background-color: rgb(54, 56, 55);
    z-index: 2;
    transition: 0.25s;
}

.btn2.hover-border-11 span::before {
    bottom: 0;
    right: -2px;
}

.btn2.hover-border-11 span::after {
    top: 0;
    left: -2px;
}

.btn2.hover-border-11 span:hover::before,
.btn2.hover-border-11 span:hover::after {
    height: 0%;
}