:root {
    --theme-color: #0d5ef4;
    --theme-color2: #f20f10;
    --title-color: #0f2239;
    --body-color: #4d5765;
    --smoke-color: #f3f7fb;
    --black-color: #000;
    --white-color: #fff;
    --light-color: #72849b;
    --yellow-color: #ffb539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #ecf1f9;
    --title-font: 'Jost', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --icon-font: "Font Awesome 5 Free";
    --main-container: 1380px;
    --container-gutters: 24px;
    --section-space: 70px;
    --section-space-mobile: 50px;
    --section-title-space: 30px;
    --ripple-ani-duration: 5s;
    --ripple-ani-duration: 5s;
    --font-large: 40px;
}

.gradient-btn {
    position: relative;
    padding: 12px 30px;
    border: none;
    background: transparent;
    color: #000;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}
.gradient-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(to right, #a3dd64, #155d9d, #a3dd64, #3f2a6c, #1261a1, #a3dd64, #155d9d);
    border-radius: inherit;
    z-index: -2;
}
.gradient-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: inherit;
    z-index: -1;
    transition: background 0.4s ease;
}
.gradient-btn:hover::after {
    background: conic-gradient(from 90deg at 50% 50%, #a3dd64 -43.35deg, #155d9d 52.25deg, #a3dd64 143.17deg, #3f2a6c 223.38deg, #1261a1 266.07deg, #a3dd64 316.65deg, #155d9d 412.25deg);
    color: #fff;
}
.primay-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    color: #000;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
}
.primay-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
   /* border thickness */
    background: conic-gradient(from 90deg at 50% 50%, #a3dd64 -43.35deg, #155d9d 52.25deg, #a3dd64 143.17deg, #3f2a6c 223.38deg, #1261a1 266.07deg, #a3dd64 316.65deg, #155d9d 412.25deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.4s ease;
}
.primay-btn:hover {
    color: #fff;
    background: conic-gradient(from 90deg at 50% 50%, #a3dd64 -43.35deg, #155d9d 52.25deg, #a3dd64 143.17deg, #3f2a6c 223.38deg, #1261a1 266.07deg, #a3dd64 316.65deg, #155d9d 412.25deg);
}
.primay-btn:hover::before {
    -webkit-mask: none;
    mask: none;
    padding: 0;
}
.secondary-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #0b081c;
}
.secondary-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
   /* border thickness */
    background: conic-gradient(from 90deg at 50% 50%, #a3dd64 -43.35deg, #155d9d 52.25deg, #a3dd64 143.17deg, #3f2a6c 223.38deg, #1261a1 266.07deg, #a3dd64 316.65deg, #155d9d 412.25deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.4s ease;
}
.secondary-btn:hover {
    color: #fff;
    background: conic-gradient(from 90deg at 50% 50%, #a3dd64 -43.35deg, #155d9d 52.25deg, #a3dd64 143.17deg, #3f2a6c 223.38deg, #1261a1 266.07deg, #a3dd64 316.65deg, #155d9d 412.25deg);
}
.secondary-btn:hover::before {
    -webkit-mask: none;
    mask: none;
    padding: 0;
}
a.btn-one {
    color: #ff675e;
    text-decoration: none;
    transition: color 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}
a.btn-one i {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.4s ease;
    transform: rotate(45deg);
}
/* Hover effects */
a.btn-one:hover {
    color: #000;
}
a.btn-one:hover i {
    transform: rotate(90deg);
}
a.btn-two {
    color: #9b24f6;
    text-decoration: none;
    transition: color 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
}
a.btn-two i {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.4s ease;
    transform: rotate(45deg);
}
/* Hover effects */
a.btn-two:hover {
    color: #000;
}
a.btn-two:hover i {
    transform: rotate(90deg);
}
@media (max-width: 768px) {
    .secondary-btn {
        padding: 10px 10px;
        font-size: 9px;
        border-radius: 50px;
   }
    .primay-btn {
        padding: 10px 10px;
        font-size: 9px;
        border-radius: 50px;
   }
}
